From f4e7713231fa8291b3fb29d03392dcb96be8f1e4 Mon Sep 17 00:00:00 2001 From: Eric Mertens Date: Wed, 3 May 2023 10:56:52 -0700 Subject: [PATCH] numeric separators --- 2022/11.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2022/11.cpp b/2022/11.cpp index e2722a8..a5e57cc 100644 --- a/2022/11.cpp +++ b/2022/11.cpp @@ -141,8 +141,8 @@ Monkey 3: )" }; auto const input = Parse(in); - CHECK(Part1(input) == 10605); - CHECK(Part2(input) == 2713310158); + CHECK(Part1(input) == 10'605); + CHECK(Part2(input) == 2'713'310'158); } }