I want to check if the list values have some level of "closeness". Is there a good algorithm to do this? Bonus points for the most pythonic way.
Valid
[1,7,8,9]
[3,4,100,101,102,103,104,105]
Not Valid
[1,8,9]
[1,10]
[100,200,300,400,500]
|
I want to check if the list values have some level of "closeness". Is there a good algorithm to do this? Bonus points for the most pythonic way. Valid
Not Valid
|
|||||||||||||||||||||
|
|
For small lists this O(n^2) algorithm will suffice:
Output is:
|
|||||||||||||
|
|
Look up variance: http://en.wikipedia.org/wiki/Variance |
|||||||
|
|
Here is a simple linear-time algorithm for an array
Since If the matching subsequence of |
||||
|
|
Here is an algorithm that takes
Several optimizations, including changing the iteration order, are possible. |
|||
|
|