Skip to content

Instantly share code, notes, and snippets.

@stsatlantis
Last active December 3, 2015 23:56
Show Gist options
  • Save stsatlantis/5bca15c26a53cecc0265 to your computer and use it in GitHub Desktop.
Save stsatlantis/5bca15c26a53cecc0265 to your computer and use it in GitHub Desktop.
2015 AdventOfCode Day1 http://adventofcode.com/day/1
package hu.stsatlantis.fun.adventofcode2015
/**
* Created by Barni on 2015.12.04..
*/
/* --- Day 1: Not Quite Lisp ---
Santa was hoping for a white Christmas, but his weather machine's "snow" function is powered by stars, and he's fresh out! To save Christmas, he needs you to collect fifty stars by December 25th.
Collect stars by helping Santa solve puzzles. Two puzzles will be made available on each day in the advent calendar; the second puzzle is unlocked when you complete the first. Each puzzle grants one star. Good luck!
Here's an easy puzzle to warm you up.
Santa is trying to deliver presents in a large apartment building, but he can't find the right floor - the directions he got are a little confusing. He starts on the ground floor (floor 0) and then follows the instructions one character at a time.
An opening parenthesis, (, means he should go up one floor, and a closing parenthesis, ), means he should go down one floor.
The apartment building is very tall, and the basement is very deep; he will never find the top or bottom floors.
For example:
(()) and ()() both result in floor 0.
((( and (()(()( both result in floor 3.
))((((( also results in floor 3.
()) and ))( both result in floor -1 (the first basement level).
))) and )())()) both result in floor -3.
To what floor do the instructions take Santa?
--- Part Two ---
Now, given the same instructions, find the position of the first character that causes him to enter the basement (floor -1). The first character in the instructions has position 1, the second character has position 2, and so on.
For example:
) causes him to enter the basement at character position 1.
()()) causes him to enter the basement at character position 5.
What is the position of the character that causes Santa to first enter the basement?
*/
object Day1 extends App {
def part1(l: List[String]) = {
l.foldLeft(0)((acc, e) =>
e match {
case ")" => acc - 1
case "(" => acc + 1
})
}
def part2(l: List[String]) = {
def processPart2(l: List[String], f: Int, c: Int): Int = {
if (f == -1) c
else {
l match {
case Nil => f
case "(" :: xs => processPart2(xs, f + 1, c + 1)
case ")" :: xs => processPart2(xs, f - 1, c + 1)
}
}
}
processPart2(l, 0, 0)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment