all: reformat
This commit is contained in:
parent
3ca9b515cf
commit
6d6b1665e5
1 changed files with 6 additions and 5 deletions
|
@ -68,7 +68,8 @@ class BetterShuffleOrder(private val shuffled: IntArray) : ShuffleOrder {
|
|||
}
|
||||
|
||||
val newShuffled = IntArray(shuffled.size + insertionCount)
|
||||
val pivot: Int = if (insertionIndex < shuffled.size) {
|
||||
val pivot: Int =
|
||||
if (insertionIndex < shuffled.size) {
|
||||
indexInShuffled[insertionIndex]
|
||||
} else {
|
||||
indexInShuffled.size
|
||||
|
|
Loading…
Reference in a new issue