Spaces:
Running
Running
File size: 154 Bytes
03a907a | 1 2 3 4 5 6 7 | def clamp(value: int, low: int, high: int) -> int:
if value < low:
return low
if value > high:
return high
return value
|