We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 83d3c01 + 9b31c35 commit c4f3005Copy full SHA for c4f3005
1 file changed
Week03/pyramid_erban_gurcan.py
@@ -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