Advent of Code 2022 - 2nd attempt in c++
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
385 B

#include <iostream>
#include <vector>
using namespace std;
typedef vector<unsigned> Input;
Input parse()
{
Input data;
return data;
}
unsigned p1(const Input &input)
{
(void)input;
return 0;
}
unsigned p2(const Input &input)
{
(void)input;
return 0;
}
int main()
{
auto input = parse();
cout << p1(input) << endl;
cout << p2(input) << endl;
}