Given a list of integers, I want to find which number is the closest to a number I give in input:
>>> myList = [4,1,88,44,3]
>>> myNumber = 5
>>> takeClosest(myList, myNumber)
...
4
Is there any quick way to do this?
|
|
|
We could use the built-in
|
|||
|
|
|
Iterate over the list and compare the current closest number with
|
|||
|
|
A lambda is a special way of writing an "anonymous" function (a function that doesn't have a name). You can assign it any name you want because a lambda is an expression. The "long" way of writing the the above would be:
|
||||
|
|
|
If you mean quick-to-execute as opposed to quick-to-write, The "almost" comes from the fact that
Bisect works by repeatedly halving a list and finding out which half $ python -m timeit -s " from closest import takeClosest from random import randint a = range(-1000, 1000, 10)" "takeClosest(a, randint(-1100, 1100))" 100000 loops, best of 3: 2.22 usec per loop $ python -m timeit -s " from closest import with_min from random import randint a = range(-1000, 1000, 10)" "with_min(a, randint(-1100, 1100))" 10000 loops, best of 3: 43.9 usec per loop So in this particular test, What if we level the playing field by removing the precondition that This is a strange result, considering that the sorting step is O(n log(n))! The only reason |
|||||
|