AdventOfCode/2020/05_haskell.ipynb

98 lines
1.7 KiB
Text

{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"puzzle <- readFile \"05.txt\"\n",
"plines = lines puzzle\n",
"\n",
"int x = read x :: Int"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Day 05"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Puzzle 1"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"938"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"seat = foldl (\\acc e -> acc * 2 + if e `elem` \"BR\" then 1 else 0) 0\n",
"foldl max 0 $ map seat plines"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Puzzle 2"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"696"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import qualified Data.Set as Set\n",
"\n",
"let seats = Set.fromList $ map seat plines\n",
" b = foldl max 0 seats\n",
" a = foldl min b seats\n",
" in head . Set.toList $ Set.difference (Set.fromList [a..b]) seats"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Haskell",
"language": "haskell",
"name": "haskell"
},
"language_info": {
"codemirror_mode": "Haskell",
"file_extension": ".hs",
"mimetype": "text/x-haskell",
"name": "haskell",
"pygments_lexer": "Haskell",
"version": "8.8.4"
}
},
"nbformat": 4,
"nbformat_minor": 4
}