Format
This commit is contained in:
parent
d07dd395e1
commit
d90152d660
1 changed files with 5 additions and 4 deletions
|
@ -12,6 +12,7 @@ object Day03 extends Day {
|
|||
def idParser[_: P]: P[Int] = P("#" ~ numParser)
|
||||
def coordParser[_: P]: P[(Int, Int)] = P(numParser ~ "," ~ numParser)
|
||||
def dimensParser[_: P]: P[(Int, Int)] = P(numParser ~ "x" ~ numParser)
|
||||
|
||||
def claimParser[_: P]: P[Claim] = P(idParser ~ "@" ~ coordParser ~ ":" ~ dimensParser).map {
|
||||
case (id, coords, dimens) => Claim(id, coords, dimens)
|
||||
}
|
||||
|
@ -34,7 +35,7 @@ object Day03 extends Day {
|
|||
|
||||
def mapSection[A](l: List[List[A]], p: (Int, Int), s: (Int, Int), f: A => A): List[List[A]] = {
|
||||
val coordinated = l.zipWithIndex.map { case (n, i) => n.zipWithIndex.map { case (e, y) => (e, y, i) } }
|
||||
val mapped = coordinated.map(_.map { case (e, y, x) => if(insideRange((x, y), p, s)) f(e) else e })
|
||||
val mapped = coordinated.map(_.map { case (e, y, x) => if (insideRange((x, y), p, s)) f(e) else e })
|
||||
mapped
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue