Skip to content

Commit 905b9ff

Browse files
committed
Math class name
1 parent 7518d69 commit 905b9ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/scorekeep/TicTacToe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public static int toInt(char[] state, char turn) {
7272
int len = state.length;
7373
for ( int i = 1; i <= len; i++ ){
7474
if ( state[len-i] == turn) {
75-
out += java.lang.Math.pow( 2, i-1 );
75+
out += Math.pow( 2, i-1 );
7676
}
7777
}
7878
return out;

0 commit comments

Comments
 (0)