chore: remove useless function declarations

This commit is contained in:
Rekai Nyangadzayi Musuka 2020-12-01 21:49:54 -06:00
parent df6b6dd888
commit 074df8a840
1 changed files with 4 additions and 8 deletions

View File

@ -3,14 +3,6 @@
#include <vector>
#include <unordered_map>
int part_1();
int part_2();
int main() {
part_1();
part_2();
}
int part_1() {
std::unordered_map<int, int> map;
std::ifstream input("../input.txt");
@ -67,3 +59,7 @@ int part_2() {
return 1;
}
int main() {
part_1();
part_2();
}