Browse Source

Added task descriptions and removed walkByColumns and walkByCircles

testing_N
Illia Soloviov 4 months ago
parent
commit
54a1ca4511
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      src/RumbleBot.java
  2. 1
    1
      src/SnakeBot.java

+ 2
- 2
src/RumbleBot.java View File

@@ -18,12 +18,12 @@ public class RumbleBot extends Bot{
}

protected char nextMove(View view){
return walk(); //@TODO Add nextMove() logic
return walk(); //@TODO: add nextMove() logic
}

private char walk(){
if(moves.isEmpty()){
moves += ' '; //@TODO Add walk() logic
moves += ' '; //@TODO: add walk() logic
}
char nextMove = moves.charAt(0);
moves = moves.substring(1);

+ 1
- 1
src/SnakeBot.java View File

@@ -22,7 +22,7 @@ public class SnakeBot extends Bot{
protected SnakeBot(String[] args) {
super(args);
}
//@TODO Find a better way to avoid collectedStones
//@TODO: find a better way to avoid collectedStones
protected char nextMove(View view){
boolean stoneDetected = view.data.contains("@");
char nextMove;

Loading…
Cancel
Save