From f0b9c12b0989be7a0c80e4d3bc7dd780dc8acbca Mon Sep 17 00:00:00 2001 From: kamoshi <18511281+kamoshi@users.noreply.github.com> Date: Wed, 23 Dec 2020 18:29:10 +0100 Subject: [PATCH] Update day23.py --- 2020/Python/day23.py | 1 + 1 file changed, 1 insertion(+) diff --git a/2020/Python/day23.py b/2020/Python/day23.py index 1a630fc..65bd804 100644 --- a/2020/Python/day23.py +++ b/2020/Python/day23.py @@ -3,6 +3,7 @@ from typing import Tuple # Implementation uses generic python list -> pretty inefficient; too slow for part 2 +# (it's a pure function though ;) ) def move_cups(cups: list[int]) -> list[int]: cups_round = cups[4:] current = cups[0]