DEV Community

I Want To Learn Programming
I Want To Learn Programming

Posted on

Code Challenge of the Day — Clamp a value (easy)

Return x limited to the range [lo, hi].
Write clamp(x, lo, hi).

Starter:

def clamp(x, lo, hi):
    # TODO
    pass
Enter fullscreen mode Exit fullscreen mode

Solve it interactively in your browser (no setup), check your answer instantly, and keep your daily streak going on IWTLP: https://iwtlp.com/challenge

Top comments (0)