This website requires JavaScript.
Explore
Help
Sign In
DBras
/
46045-syslab
Watch
1
Star
0
Fork
You've already forked 46045-syslab
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
deeb335eca
46045-syslab
/
util.py
6 lines
111 B
Python
Raw
Blame
History
def
clamp
(
a
,
x
,
b
)
:
"""
Restrict x to lie in the range [a, b]
"""
return
max
(
a
,
min
(
x
,
b
)
)
Reference in New Issue
View Git Blame
Copy Permalink