aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--2021/06/puzzles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/2021/06/puzzles.py b/2021/06/puzzles.py
index 9d3f2d4..c842e55 100644
--- a/2021/06/puzzles.py
+++ b/2021/06/puzzles.py
@@ -20,7 +20,7 @@ def main() -> None:
acc[6] += n
acc[8] = n
- print(sum(acc.values()))
+ print(acc.total())
if __name__ == "__main__":