()
| 72 | } |
| 73 | |
| 74 | public String scramble() { |
| 75 | String scr; |
| 76 | do { |
| 77 | scr = solution(FullCube.randomCube(), INVERSE_SOLUTION); |
| 78 | } while (scr.length() < 4); |
| 79 | return scr; |
| 80 | } |
| 81 | |
| 82 | public String scramble(int shape) { |
| 83 | String scr; |
nothing calls this directly
no test coverage detected