MCPcopy Create free account
hub / github.com/Tiwarishashwat/InterviewCodes / main

Method main

StringRotations.java:3–5  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

1public 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();

Callers

nothing calls this directly

Calls 1

isRotationMethod · 0.95

Tested by

no test coverage detected