()
| 391 | } |
| 392 | |
| 393 | public static String scramble() { |
| 394 | String scramble; |
| 395 | do { |
| 396 | int p = r.nextInt(5040); |
| 397 | int o = r.nextInt(729); |
| 398 | scramble = solve(p, o); |
| 399 | } while (scramble.equals("error")); |
| 400 | return scramble; |
| 401 | } |
| 402 | |
| 403 | public static String scrambleEG(int type) { |
| 404 | String scramble; |
no test coverage detected