diff --git a/lab02/src/bomb/BombMain.java b/lab02/src/bomb/BombMain.java index 934f14e..94c9204 100644 --- a/lab02/src/bomb/BombMain.java +++ b/lab02/src/bomb/BombMain.java @@ -8,16 +8,15 @@ public static void answers(String[] args) { if (args.length > 0) { phase = Integer.parseInt(args[0]); } - // TODO: Find the correct inputs (passwords) to each phase using debugging techniques Bomb b = new Bomb(); if (phase >= 0) { - b.phase0("Figure this out. I wonder where the phases are defined..."); + b.phase0("39291226"); } if (phase >= 1) { - b.phase1(null); // Figure this out too + b.phase1(IntList.of(0, 9, 3, 0, 8)); // Figure this out too } if (phase >= 2) { - b.phase2("Figure this out. I wonder where the phases are defined..."); + b.phase2("793227803"); } } }