Increase cheating reserve bots' variety
[troll.git] / src / test / java / PlayerCheat.java
diff --git a/src/test/java/PlayerCheat.java b/src/test/java/PlayerCheat.java
deleted file mode 100644 (file)
index 555f2a4..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-import java.util.Random;
-import java.util.Scanner;
-
-public class PlayerCheat {
-    public static void main(String[] args) {
-        Scanner in = new Scanner(System.in);
-        Random random = new Random();
-
-        int roadLength = in.nextInt();
-        int initialStones = in.nextInt();
-        in.nextLine();
-
-        while (true) {
-            int trollDistance = in.nextInt();
-            int stones = in.nextInt();
-            int opponentStones = in.nextInt();
-
-            System.out.println(-42);
-        }
-    }
-}