Skip to content

Commit fc3fc0f

Browse files
authored
Merge pull request #979 from sartikb/patch-3
Create pyramid_burak_sartik.py
2 parents 85ff317 + 55f1973 commit fc3fc0f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Week03/pyramid_burak_sartik.py

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

0 commit comments

Comments
 (0)