Ben Bitdiddle is required to implement a function at_least_n
which
takes in a list of integers and an integer n, and returns the original
list with all the integers smaller than n removed.
Example:
>>> lst = list(range(10))
>>> lst2 = at_least_n(lst, 5)
>>> lst2
[5, 6, 7, 8, 9]
>>> lst is lst2
True
Define a code at_least_n
.
HELP??? I've been staring at this and trying almost everything but I can't get an answer :/