Changes of memory-heavy implementations added

This commit is contained in:
Joachim 2018-08-27 20:26:16 +02:00
parent 28545f3c59
commit 23b5bcbce1
2 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,5 @@
package be.nielandt package be.nielandt
import be.nielandt.counter.CounterBuffer
import be.nielandt.counter.CounterSkip import be.nielandt.counter.CounterSkip
/** /**

View 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.
}
}