You are viewing a single comment's thread. Return to all comments →
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
Seems like cookies are disabled on this browser, please enable them to open this website
Minimum Height Triangle
You are viewing a single comment's thread. Return to all comments →
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