summaryrefslogtreecommitdiff
path: root/2022/Cpp
diff options
context:
space:
mode:
Diffstat (limited to '2022/Cpp')
-rw-r--r--2022/Cpp/Day4/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/2022/Cpp/Day4/main.cpp b/2022/Cpp/Day4/main.cpp
index b511da8..8cb9d48 100644
--- a/2022/Cpp/Day4/main.cpp
+++ b/2022/Cpp/Day4/main.cpp
@@ -41,8 +41,8 @@ void solve_part_two() {
int main () {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
- // solve_part_one();
- solve_part_two();
+ solve_part_one();
+ // solve_part_two();
}