previous | start | next

Handling Triangle of Width 1

public int getArea()
{
    if (width == 1) return 1;
}




previous | start | next