aboutsummaryrefslogtreecommitdiff
path: root/src/2015/day1/aoc.cpp
blob: 2263558263a1491ebe00f408f12f2ba36579a368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "aoc.h"

namespace aoc2015 {

int day1(line_view lv) {
  int level = 0;
  for (size_t i = 0; i < lv.length; ++i) {
    level += lv.line[i] == '(' ? 1 : -1;
  }
  return level;
}

} // namespace aoc2015