chore: remove useless function declarations
This commit is contained in:
parent
df6b6dd888
commit
074df8a840
|
@ -3,14 +3,6 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
int part_1();
|
|
||||||
int part_2();
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
part_1();
|
|
||||||
part_2();
|
|
||||||
}
|
|
||||||
|
|
||||||
int part_1() {
|
int part_1() {
|
||||||
std::unordered_map<int, int> map;
|
std::unordered_map<int, int> map;
|
||||||
std::ifstream input("../input.txt");
|
std::ifstream input("../input.txt");
|
||||||
|
@ -67,3 +59,7 @@ int part_2() {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
part_1();
|
||||||
|
part_2();
|
||||||
|
}
|
Reference in New Issue