• + 0 comments

    JS solution

    function lowestTriangle(trianglebase, area) { return Math.ceil(2 * area / trianglebase); }