()
| 148 | } |
| 149 | |
| 150 | public static String scrambleWCA() { |
| 151 | String scr; |
| 152 | do { |
| 153 | scr = scramble(7); |
| 154 | } while (scr.equals("error")); |
| 155 | return scr; |
| 156 | } |
| 157 | |
| 158 | public static String scrambleL2L() { |
| 159 | int[] arr = new int[6], arr2 = new int[4]; |
no test coverage detected