(String big, String small)
| 2 | |
| 3 | public class Question { |
| 4 | public static boolean isSubstring(String big, String small) { |
| 5 | if (big.indexOf(small) >= 0) { |
| 6 | return true; |
| 7 | } else { |
| 8 | return false; |
| 9 | } |
| 10 | } |
| 11 | |
| 12 | public static boolean isRotation(String s1, String s2) { |
| 13 | int len = s1.length(); |