Changes of memory-heavy implementations added
This commit is contained in:
parent
28545f3c59
commit
23b5bcbce1
@ -1,6 +1,5 @@
|
||||
package be.nielandt
|
||||
|
||||
import be.nielandt.counter.CounterBuffer
|
||||
import be.nielandt.counter.CounterSkip
|
||||
|
||||
/**
|
||||
|
||||
13
src/main/kotlin/be/nielandt/iterator/ValidMoveIterator.kt
Normal file
13
src/main/kotlin/be/nielandt/iterator/ValidMoveIterator.kt
Normal file
@ -0,0 +1,13 @@
|
||||
package be.nielandt.iterator
|
||||
|
||||
class ValidMoveIterator: Iterator<Array<Int>> {
|
||||
|
||||
override fun hasNext(): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
}
|
||||
|
||||
override fun next(): Array<Int> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user