Does your implementation pass this test? ``` "find...
# kotlintest
a
Does your implementation pass this test?
Copy code
"find the 1000 number" {
    val iterator = (1..1000).iterator()
    eventually(2.seconds) {
        iterator.next() shouldBe 1000
    }
}