aboutsummaryrefslogtreecommitdiffstats
path: root/AoC2022/02/solver.el
blob: 18fe64ece197c8aaeaf50d06af5bad24409c2411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
;;; solver.el --- Second day -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2022 Óscar Nájera
;;
;; Author: Óscar Nájera <hi@oscarnajera.com>
;; Maintainer: Óscar Nájera <hi@oscarnajera.com>
;; Created: December 02, 2022
;; Modified: December 02, 2022
;; Version: 0.0.1
;; Keywords: abbrev bib c calendar comm convenience data docs emulations extensions faces files frames games hardware help hypermedia i18n internal languages lisp local maint mail matching mouse multimedia news outlines processes terminals tex tools unix vc wp
;; Homepage: https://github.com/titan/solver
;; Package-Requires: ((emacs "25.1"))
;;
;; This file is not part of GNU Emacs.
;;
;;; Commentary:
;;
;;  Second day
;;
;;; Code:

(require 'seq)
(require 'ert)

(defun solver-translate (play)
  (pcase play
    ((or ?A ?X) 'rock)
    ((or ?B ?Y) 'paper)
    ((or ?C ?Z) 'scissors)))

(defun solver-weight (play)
  (pcase play
    ('rock 1)
    ('paper 2)
    ('scissors 3)))

(defun solver-result-a (a b)
  (pcase (list a b)
    ((or '(rock scissors)
      '(scissors paper)
      '(paper rock)) 6)
    (`(,c ,c) 3)
    (_ 0)))

(should (= 12535
           (with-temp-buffer
             (insert-file-contents "input")
             (seq-reduce
              (lambda (acc game)
                (let ((oponent (solver-translate (aref game 0)))
                      (my-game (solver-translate (aref game 2))))
                  (+ acc (solver-weight my-game) (solver-result-a my-game oponent))))
              (split-string (buffer-string) "\n" t)
              0))))