We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d429503 commit 0746ddeCopy full SHA for 0746dde
include/common_headers.hpp
@@ -2,10 +2,12 @@
2
#include "utils/input_parser.hpp"
3
4
#include <algorithm>
5
+#include <cstdint>
6
#include <iostream>
7
#include <fstream>
8
#include <charconv>
9
#include <vector>
10
+#include <string>
11
#include <stdexcept>
12
#include <numeric>
13
#include <unordered_map>
src/day4.cpp
@@ -1,5 +1,8 @@
1
#include "common_headers.hpp"
+#include <array>
+
/*
Part 1.
The task is to count the word `XMAS` horizontally, vertically, diagonally.
0 commit comments