Neighbors Distance

The filter compares the differences of ticket numbers at neighboring ticket positions. For example in a ticket 1-10-15-18-34-40 the neighboring numbers are 1 and 10, their distance is 10-1=9. Another pair of neighbors are 10 and 15, their distance is 15-10=5. Other neighboring numbers are 15 and 18, 18 and 34 and 34 and 40.

Example

Filtering with settings 5 to 5 neighboring numbers have distance of 1 to 1 accepts only tickets like 1-2-3-4-5-6 as the difference of all five neighboring pairs is one.

Filtering with settings 2 to 3 neighboring numbers have distance of 5 to 10 accepts for example ticket 5-8-21-28-33-42 because neighbors 21 and 28, 28 and 33 and 33 and 42 have the distance in the range of 5 to 10. However, for example ticket 3-8-21-28-33-42 is rejected because there are four neighboring pairs of numbers with the distance in the given range.