Skip to content

Instantly share code, notes, and snippets.

@Dierk
Created December 3, 2017 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dierk/5b3c232571965e8296a7bef24ac12f65 to your computer and use it in GitHub Desktop.
Save Dierk/5b3c232571965e8296a7bef24ac12f65 to your computer and use it in GitHub Desktop.
Advent of Frege code, day 2
module Advent2 where
{-
http://adventofcode.com/2017/day/2
-}
-- the core of the checksum logic
checkSum xss = sum (map lineCS xss) where
lineCS xs = maximum xs - minimum xs
import frege.java.util.Regex
toList str = map atoi $ ´\W+´.splitted str
input = -- replace with your data
[
toList "1919 2959 82 507 3219 239 3494 1440 3107 259 3544 683 207 562 276 2963 ",
toList "587 878 229 2465 2575 1367 2017 154 152 157 2420 2480 138 2512 2605 876 ",
toList "744 6916 1853 1044 2831 4797 213 4874 187 6051 6086 7768 5571 6203 247 285 ",
toList "1210 1207 1130 116 1141 563 1056 155 227 1085 697 735 192 1236 1065 156 ",
toList "682 883 187 307 269 673 290 693 199 132 505 206 231 200 760 612 ",
toList "1520 95 1664 1256 685 1446 253 88 92 313 754 1402 734 716 342 107 ",
toList "146 1169 159 3045 163 3192 1543 312 161 3504 3346 3231 771 3430 3355 3537 ",
toList "177 2129 3507 3635 2588 3735 3130 980 324 266 1130 3753 175 229 517 3893 ",
toList "4532 164 191 5169 4960 3349 3784 3130 5348 5036 2110 151 5356 193 1380 3580",
toList "2544 3199 3284 3009 3400 953 3344 3513 102 1532 161 143 2172 2845 136 2092 ",
toList "194 5189 3610 4019 210 256 5178 4485 5815 5329 5457 248 5204 4863 5880 3754",
toList "3140 4431 4534 4782 3043 209 216 5209 174 161 3313 5046 1160 160 4036 111 ",
toList "2533 140 4383 1581 139 141 2151 2104 2753 4524 4712 866 3338 2189 116 4677 ",
toList "1240 45 254 1008 1186 306 633 1232 1457 808 248 1166 775 1418 1175 287 ",
toList "851 132 939 1563 539 1351 1147 117 1484 100 123 490 152 798 1476 543 ",
toList "1158 2832 697 113 121 397 1508 118 2181 2122 809 2917 134 2824 3154 2791 "
]
main args = do
println $ checkSum input
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment