(String[] args)
| 1 | public class Main |
| 2 | { |
| 3 | public static void main(String[] args) { |
| 4 | System.out.println(isRotation("ABCD","ACBD")); |
| 5 | } |
| 6 | public static boolean isRotation(String s1, String s2) |
| 7 | { |
| 8 | int n1=s1.length(); |
nothing calls this directly
no test coverage detected