(int r)
| 498 | } |
| 499 | |
| 500 | void rotate(int r) { |
| 501 | while (r >= 2) { |
| 502 | r -= 2; |
| 503 | rot(1); |
| 504 | rot(2); |
| 505 | } |
| 506 | if (r != 0) { |
| 507 | rot(0); |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | static int tempi; |
| 512 | void circle(int[] arr, int a, int b, int c, int d) { |
no test coverage detected