Piss poor attempt at AoC 2021 and I'm 3 years late publishing it :/

This commit is contained in:
Gnarwhal 2024-10-06 21:15:16 +00:00
parent 75a4f18e60
commit 13c1c748e7
9 changed files with 2344 additions and 0 deletions

View file

@ -0,0 +1,23 @@
/*****************************
*
* Copyright (c) 2020 Gnarwhal
*
*****************************/
#include <vector>
#include <string>
#include <iostream>
#include <fstream>
#include "../misc/types.hpp"
#include "../misc/print.hpp"
auto current_day() -> void {
{
auto line = std::string();
auto file = std::ifstream("inputs/current_day.input");
while (getline(file, line)) {
}
}
}