We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Minimum Height Triangle
Minimum Height Triangle
Sort by
recency
|
381 Discussions
|
Please Login in order to post a comment
For Python3 Platform
Hey, this day is too much good for me, since this time I am reading this enormous informative article here at my home. Thanks a lot for massive hard work. Slot Domino88
easy python solution:
def lowestTriangle(trianglebase, area): h = 0 while True: temp_area = 0.5*trianglebase*h if temp_area >= area: return h h+= 1
Here's my solution:
hey