aboutsummaryrefslogtreecommitdiff
path: root/src/2015/day23/aoc.cpp
blob: 9cb0cefcfac97ba8e1498024dcd4b0c2add77258 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "aoc.h"
#include <string.h>
#include <vector>

namespace aoc2015 {

std::pair<int, int> day23(line_view file) {
  return {0, 0};
}

}