Skip to content

Commit 98fe3ef

Browse files
new commit
1 parent 6df8de2 commit 98fe3ef

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

GameWithCells/GameWithCells.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# https://www.hackerrank.com/challenges/game-with-cells/problem

LowestTriangle/LowestTriangle.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# https://www.hackerrank.com/challenges/lowest-triangle/problem
2+
3+
import math
4+
5+
b, a = map(int, input().split())
6+
7+
h = (a * 2) / b
8+
print(math.ceil(h))

0 commit comments

Comments
 (0)