2023/day6/data.py
Fedaya 8b2bac0791 Day 6 completed
Day5 part 2 still ongoing
2023-12-06 08:12:32 +01:00

14 lines
268 B
Python

from dataclasses import dataclass
@dataclass
class Race:
time: int
record: int
def length_for_button_press(self, duration: int) -> int:
length = 0
for i in range(duration, self.time):
length += duration
return length