Day 4 part 1 done
This commit is contained in:
parent
fe68c24b57
commit
c62e76023a
|
@ -1,60 +1,64 @@
|
||||||
import std/[strutils, sequtils, options, math, parseutils, sets]
|
import std/[strutils, sequtils, options, math, parseutils, sets, strformat]
|
||||||
import ./common
|
import ./common
|
||||||
|
|
||||||
type Board = object
|
type Board = object
|
||||||
entries: seq[string]
|
entries: seq[string]
|
||||||
checked: seq[int]
|
checked: seq[int]
|
||||||
|
|
||||||
let winningSets = [
|
proc isBoardWinning(b: Board): bool =
|
||||||
[0, 1, 2, 3, 4],
|
let winningSets: seq[HashSet[int]] = [
|
||||||
[5, 6, 7, 8, 9],
|
[0, 1, 2, 3, 4],
|
||||||
[10, 11, 12, 13, 14],
|
[5, 6, 7, 8, 9],
|
||||||
[15, 16, 17, 18, 19],
|
[10, 11, 12, 13, 14],
|
||||||
[20, 21, 22, 23, 24],
|
[15, 16, 17, 18, 19],
|
||||||
[0, 5, 10, 15, 20],
|
[20, 21, 22, 23, 24],
|
||||||
[1, 6, 11, 16, 21],
|
[0, 5, 10, 15, 20],
|
||||||
[2, 7, 12, 17, 22],
|
[1, 6, 11, 16, 21],
|
||||||
[3, 8, 13, 18, 23],
|
[2, 7, 12, 17, 22],
|
||||||
[4, 9, 14, 19, 24]
|
[3, 8, 13, 18, 23],
|
||||||
].mapIt(it.toHashSet())
|
[4, 9, 14, 19, 24]
|
||||||
|
].mapIt(it.toHashSet())
|
||||||
|
|
||||||
proc isBoardWinning(b: ref Board): bool =
|
|
||||||
let s = b.checked.toHashSet()
|
let s = b.checked.toHashSet()
|
||||||
for w in winningSets:
|
for w in winningSets:
|
||||||
if w < s:
|
if w < s:
|
||||||
return true
|
return true
|
||||||
return false
|
return false
|
||||||
|
|
||||||
|
|
||||||
proc squidBingo(inputLines: seq[string]): int =
|
proc squidBingo(inputLines: seq[string]): int =
|
||||||
var input: seq[string] = inputLines
|
var input: seq[string] = inputLines
|
||||||
let calledNumbers: seq[string] = input[0].split ','
|
let calledNumbers: seq[string] = input[0].split ','
|
||||||
input.delete 0..1
|
input.delete 0..1
|
||||||
|
|
||||||
echo calledNumbers
|
|
||||||
|
|
||||||
# construct boards
|
# construct boards
|
||||||
var boards: seq[Board]
|
var boards: seq[Board]
|
||||||
var board: Board = Board(entries: @[], checked: @[])
|
var board: Board = Board(entries: @[], checked: @[])
|
||||||
for l in input:
|
for l in input:
|
||||||
echo l
|
|
||||||
if l.strip() == "":
|
if l.strip() == "":
|
||||||
boards.add board
|
boards.add board
|
||||||
echo board.entries
|
|
||||||
board = Board(entries: @[], checked: @[])
|
board = Board(entries: @[], checked: @[])
|
||||||
continue
|
continue
|
||||||
board.entries.add [l[0..1], l[3..4], l[6..7], l[9..10], l[12..13]].mapIt(it.strip())
|
board.entries.add [l[0..1], l[3..4], l[6..7], l[9..10], l[12..13]].mapIt(it.strip())
|
||||||
|
|
||||||
|
boards.add board
|
||||||
|
|
||||||
|
echo boards
|
||||||
|
|
||||||
for n in calledNumbers:
|
for n in calledNumbers:
|
||||||
for b in boards:
|
echo n
|
||||||
|
for b in boards.mitems():
|
||||||
for i, e in b.entries:
|
for i, e in b.entries:
|
||||||
if n == e:
|
if n == e:
|
||||||
# TODO: why can't I add here but I can add on 46?!
|
# TODO: why can't I add here but I can add on 46?!
|
||||||
b.checked.add i
|
b.checked.add i
|
||||||
|
echo b.entries, b.checked
|
||||||
if b.isBoardWinning():
|
if b.isBoardWinning():
|
||||||
# TODO: get unchecked entries
|
var entriesSum = 0
|
||||||
# TODO: multiple their sum with last .checked
|
for i, v in b.entries:
|
||||||
return 9
|
if not (i in b.checked): entriesSum += v.parseInt()
|
||||||
|
else: echo &"{i} {v}"
|
||||||
|
echo &"{entriesSum} * {n} = {entriesSum * n.parseInt()}"
|
||||||
|
return entriesSum * n.parseInt()
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@ Or
|
||||||
|
|
||||||
- [x] [Day 1](./1.ts)
|
- [x] [Day 1](./1.ts)
|
||||||
- [x] [Day 2](./2.ts)
|
- [x] [Day 2](./2.ts)
|
||||||
- [ ] Day 3
|
- [x] [Day 3](./3.ts)
|
||||||
- [ ] Day 4
|
- [ ] Day 4
|
||||||
- [ ] Day 5
|
- [ ] Day 5
|
||||||
- [ ] Day 6
|
- [ ] Day 6
|
||||||
|
|
Loading…
Reference in a new issue