We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3b2c3e commit 2a6da2bCopy full SHA for 2a6da2b
Week03/pyramid_cemil_koca.py
@@ -0,0 +1,9 @@
1
+def calculate_pyramid_height(number_of_blocks):
2
+ height = 0
3
+ remaining = number_of_blocks
4
+
5
+ while remaining >= height + 1:
6
+ height += 1
7
+ remaining -= height
8
9
+ return height
0 commit comments