Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Predefined arguments solution in Clear category for Simple Areas by Tinus_Trotyl
def simple_areas(a, b=0, c=0):
return [.7853981634 * a * a,
a * b,
(((a + b + c) * (a + b - c) * (b + c - a) * (c + a - b)) ** .5) / 4][bool(b) + bool(c)]
July 18, 2019
Comments: