Skip to content

Commit 3086e06

Browse files
forgot ;
title
1 parent ef8a4a2 commit 3086e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aima-core/src/main/java/aima/core/environment/eightpuzzle/EightPuzzleBoard.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ private int getGapPosition() {
208208
private int getPositionOf(int val) {
209209
for (int i = 0; i < 9; i++) {
210210
if (state[i] == val) {
211-
return i
211+
return i;
212212
}
213213
}
214214
return -1;

0 commit comments

Comments
 (0)