mirror of
https://github.com/Crocmagnon/advent-of-code.git
synced 2024-11-22 06:28:11 +01:00
Improve readability for day7 numbers
This commit is contained in:
parent
650ad7d04b
commit
43c98a209f
1 changed files with 2 additions and 2 deletions
|
@ -103,8 +103,8 @@ def solve_part_1(root: Directory) -> int:
|
||||||
|
|
||||||
|
|
||||||
def solve_part_2(root: Directory) -> int:
|
def solve_part_2(root: Directory) -> int:
|
||||||
total_disk_space = 70000000
|
total_disk_space = 70_000_000
|
||||||
required_disk_space = 30000000
|
required_disk_space = 30_000_000
|
||||||
unused_space = total_disk_space - root.size
|
unused_space = total_disk_space - root.size
|
||||||
minimum_size_to_delete = required_disk_space - unused_space
|
minimum_size_to_delete = required_disk_space - unused_space
|
||||||
minimum_directory_size = math.inf
|
minimum_directory_size = math.inf
|
||||||
|
|
Loading…
Reference in a new issue