-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvent.h
77 lines (61 loc) · 1.39 KB
/
advent.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//
// Created by Amelia Ng on 01/12/2022.
//
#ifndef ADVENTOFCODE_ADVENT_H
#define ADVENTOFCODE_ADVENT_H
#include <string>
namespace aoc {
namespace day1 {
unsigned int solution1();
unsigned int solution2();
}
namespace day2 {
unsigned int solution1();
unsigned int solution2();
}
namespace day3 {
unsigned int solution1();
unsigned int solution2();
}
namespace day4 {
unsigned int solution1();
unsigned int solution2();
}
namespace day5 {
std::string solution1();
std::string solution2();
}
namespace day6 {
unsigned int solution1();
unsigned int solution2();
}
namespace day7 {
unsigned int solution1();
unsigned int solution2();
}
namespace day8 {
unsigned int solution1();
unsigned int solution2();
}
namespace day9 {
unsigned int solution1();
unsigned int solution2();
}
namespace day10 {
unsigned int solution1();
std::string solution2();
}
namespace day11 {
unsigned int solution1();
unsigned int solution2();
}
namespace day12 {
unsigned int solution1();
unsigned int solution2();
}
namespace day13 {
unsigned int solution1();
unsigned int solution2();
}
}
#endif //ADVENTOFCODE_ADVENT_H