Files
advent-of-code-2023/day12/Part1.hs

8 lines
138 B
Haskell

module Part1 where
import Commons
getAll :: [Row] -> [Int]
getAll = map (\ row -> getNPossibleArrangements (groups row) (springs row))