Skip to content

Commit

Permalink
[2015/2 & 3] print p1 and p2 on separate lines
Browse files Browse the repository at this point in the history
  • Loading branch information
StarlitGhost committed Dec 13, 2024
1 parent f98edfd commit e6c1216
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion 2015/2/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@
ribbon = wrap + bow
total_ribbon += ribbon

print(total_paper, total_ribbon)
print(total_paper)
print(total_ribbon)
3 changes: 2 additions & 1 deletion 2015/3/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@
else:
p2_grid[house] += 1

print(len(p1_grid), len(p2_grid))
print(len(p1_grid))
print(len(p2_grid))

0 comments on commit e6c1216

Please sign in to comment.