(int type, String scr)
| 244 | } |
| 245 | |
| 246 | public static String solve(int type, String scr) { |
| 247 | if (type == 0) return ""; |
| 248 | int state = applySequence(scr.split(" ")); |
| 249 | if (type == 1) { |
| 250 | return solveTrn(state); |
| 251 | } |
| 252 | return solveTws(state); |
| 253 | } |
| 254 | |
| 255 | private static String solveTrn(int state) { |
| 256 | initf(); |
no test coverage detected