From 074df8a8401b06e1570774cafd3b58f80b7ba825 Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Tue, 1 Dec 2020 21:49:54 -0600 Subject: [PATCH] chore: remove useless function declarations --- day_1/main.cpp | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/day_1/main.cpp b/day_1/main.cpp index d70b3fb..9715571 100644 --- a/day_1/main.cpp +++ b/day_1/main.cpp @@ -3,14 +3,6 @@ #include #include -int part_1(); -int part_2(); - -int main() { - part_1(); - part_2(); -} - int part_1() { std::unordered_map map; std::ifstream input("../input.txt"); @@ -67,3 +59,7 @@ int part_2() { return 1; } +int main() { + part_1(); + part_2(); +} \ No newline at end of file