Skip to content

Commit c4f3005

Browse files
authored
Merge pull request #1001 from Erbangurcan/patch-4
Create pyramid_erban_gurcan.py
2 parents 83d3c01 + 9b31c35 commit c4f3005

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Week03/pyramid_erban_gurcan.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
def calculate_pyramid_height(number_of_blocks):
2+
height = 0
3+
blocks_needed = 1
4+
5+
while number_of_blocks >= blocks_needed:
6+
number_of_blocks -= blocks_needed
7+
height += 1
8+
blocks_needed += 1
9+
10+
return height

0 commit comments

Comments
 (0)