Remove redundant if statement in try_move
The if statement is redundant since if index == 0 then BITS_BITLENGTH * index == 0.
index == 0
BITS_BITLENGTH * index == 0
Remove redundant if statement in try_move
The if statement is redundant since if
index == 0
thenBITS_BITLENGTH * index == 0
.