Skip to content

Commit 7568b36

Browse files
authored
Merge pull request #614 from esrakaya64/patch-3
Create pyramid_esra_kaya.py
2 parents ff53aad + 7875ef4 commit 7568b36

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Week03/pyramid_esra_kaya.py

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

0 commit comments

Comments
 (0)