mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
11 lines
252 B
C++
11 lines
252 B
C++
#include <iostream>
|
|
#include "days.hpp"
|
|
|
|
void aoc2019::day11_part1(std::istream &input, std::ostream &output) {
|
|
output << "Not implemented\n";
|
|
}
|
|
|
|
void aoc2019::day11_part2(std::istream &input, std::ostream &output) {
|
|
output << "Not implemented\n";
|
|
}
|