This commit is contained in:
Eric Mertens
2022-11-11 08:27:18 -08:00
parent 4a8b31bd86
commit 346283bc8a
7 changed files with 22 additions and 28 deletions

View File

@@ -5,7 +5,6 @@
namespace intcode {
auto ParseStream(std::istream &in) -> std::vector<ValueType> {
ValueType x;
std::string str;
std::vector<ValueType> result;
while (std::getline(in, str, ',')) {