Skip to content

Commit e6c1216

Browse files
committed
[2015/2 & 3] print p1 and p2 on separate lines
1 parent f98edfd commit e6c1216

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

2015/2/script.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@
2020
ribbon = wrap + bow
2121
total_ribbon += ribbon
2222

23-
print(total_paper, total_ribbon)
23+
print(total_paper)
24+
print(total_ribbon)

2015/3/script.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,5 @@
3232
else:
3333
p2_grid[house] += 1
3434

35-
print(len(p1_grid), len(p2_grid))
35+
print(len(p1_grid))
36+
print(len(p2_grid))

0 commit comments

Comments
 (0)