Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
2(L+W) solution in Clear category for Rectangle Perimeter by Phil15
def rectangle_perimeter(length: int, width: int) -> int:
return 2 * (length + width)
Oct. 7, 2023
Comments: