Added drafts for SnakeBot and RumbleBot

This commit is contained in:
Illia Soloviov 2024-01-06 21:52:37 +01:00
parent cdb894c428
commit 667eb1e2f7

View File

@ -35,7 +35,6 @@ public class SnakeBot extends Bot{
count++; count++;
} }
} }
return count; return count;
} }
private char goToStone(View view){ private char goToStone(View view){
@ -79,8 +78,6 @@ public class SnakeBot extends Bot{
} }
char nextMove = moves.charAt(0); char nextMove = moves.charAt(0);
moves = moves.substring(1); moves = moves.substring(1);
return nextMove; return nextMove;
} }
} }