Piss poor attempt at AoC 2021 and I'm 3 years late publishing it :/
This commit is contained in:
parent
426e842536
commit
c69deb2ae7
9 changed files with 2344 additions and 0 deletions
23
2021/misc/day.cpp.template
Normal file
23
2021/misc/day.cpp.template
Normal 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)) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue