generate functionTue, 23 May 2023
create a function of a set of integers and a value for which you need to find the nearest one.
def nearest_value(values: set, one: int) -> int: # your code here return min(values, key=lambda x:abs(x-one))
Python
Generate More