(String scr)
| 118 | } |
| 119 | |
| 120 | public static int[] image(String scr) { |
| 121 | initColor(); |
| 122 | String[] s = scr.split(" "); |
| 123 | for (int i = 0; i < s.length; i++) { |
| 124 | if (s[i].length() > 0) |
| 125 | move("URDL".indexOf(s[i].charAt(0))); |
| 126 | } |
| 127 | return img; |
| 128 | } |
| 129 | } |
no test coverage detected