diff options
author | 2020-12-25 01:02:32 +0100 | |
---|---|---|
committer | 2020-12-25 08:10:10 +0100 | |
commit | f3273983a827b01a12f1ddf6215f8d69938821eb (patch) | |
tree | db95c97e3686967e70827fdcea797aa53dc0b115 /day22/data.js | |
parent | da3b7eacf125f1569fa5c5b50b60941a65d5067f (diff) | |
download | advent_of_code_2020-f3273983a827b01a12f1ddf6215f8d69938821eb.tar.gz advent_of_code_2020-f3273983a827b01a12f1ddf6215f8d69938821eb.tar.bz2 advent_of_code_2020-f3273983a827b01a12f1ddf6215f8d69938821eb.zip |
day22
Diffstat (limited to 'day22/data.js')
-rw-r--r-- | day22/data.js | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/day22/data.js b/day22/data.js new file mode 100644 index 0000000..e85ae4e --- /dev/null +++ b/day22/data.js @@ -0,0 +1,57 @@ +const data = ` +Player 1: +47 +19 +22 +31 +24 +6 +10 +5 +1 +48 +46 +27 +8 +45 +16 +28 +33 +41 +42 +36 +50 +39 +30 +11 +17 + +Player 2: +4 +18 +21 +37 +34 +15 +35 +38 +20 +23 +9 +25 +32 +13 +26 +2 +12 +44 +14 +49 +3 +40 +7 +43 +29 +` + +module.exports = data |