aoc2017-0.1.0.0: Advent of Code 2017 - my answers

Safe HaskellNone
LanguageHaskell2010

Day14

Description

 

Synopsis

Documentation

grid :: String -> [[Word8]] Source #

Given an input string, returns hashString of the string with a dash and each integer in [0..127].

bits :: FiniteBits b => b -> [Bool] Source #

Returns a list of bits from most-significant to least-significant.

groupedBits :: FiniteBits b => [[b]] -> [[(Int, Int)]] Source #

Returns a list of the coordinates of connected groups of bits.