Advertisement
astrosofista

AoC2a 2022

Dec 4th, 2022
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Autohotkey 0.91 KB | Source Code | 0 0
  1. ProcessFile(fileName) {
  2.     FileRead, data, % fileName
  3.  
  4.     output := 0
  5.     For k, v in StrSplit(data, "`n") {
  6.         arr := StrSplit(v, " ")
  7.         Switch arr[1] {
  8.             Case "A": {                   ; rock
  9.                 if (arr[2] = "Y")         ; paper
  10.                     output += 2 + 6
  11.                 else if (arr[2] = "X")    ; rock
  12.                     output += 1 + 3
  13.                 else if (arr[2] = "Z")    ; scissors
  14.                     output += 3 + 0
  15.             }
  16.             Case "B": {                   ; paper
  17.                 if (arr[2] = "Z")         ; scissors
  18.                     output += 3 + 6
  19.                 else if (arr[2] = "Y")    ; paper
  20.                     output += 2 + 3
  21.                 else if (arr[2] = "X")    ; rock
  22.                     output += 1 + 0
  23.             }
  24.             Case "C": {                   ; scissors
  25.                 if (arr[2] = "X")         ; rock
  26.                     output += 1 + 6
  27.                 else if (arr[2] = "Z")    ; scissors
  28.                     output += 3 + 3
  29.                 else if (arr[2] = "Y")    ; paper
  30.                     output += 2 + 0
  31.             }
  32.         }
  33.     }
  34.  
  35.     return output
  36. }
  37.  
  38.     MsgBox, % ProcessFile(A_ScriptDir "\aoc2.txt")
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement