Skip to content

Commit b888177

Browse files
authored
Merge pull request #102 from BrunoViola/24-inventory
Fix: List in the solution differs from the instructions.
2 parents 1da23d0 + 91af2af commit b888177

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

5-lists/24_inventory.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Inventory 📦
22
# Codédex
33

4-
airplane_toys = [ 898, 732, 543, 878 ]
4+
lego_parts = [8980, 7323, 5343, 82700, 92232, 1203, 7319, 8903, 2328, 1279, 679, 589]
55

6-
print(min(airplane_toys))
7-
print(max(airplane_toys))
6+
print(min(lego_parts))
7+
print(max(lego_parts))

0 commit comments

Comments
 (0)