MCPcopy Create free account
hub / github.com/careercup/ctci / isSubstring

Method isSubstring

java/Chapter 1/Question1_8/Question.java:4–10  ·  view source on GitHub ↗
(String big, String small)

Source from the content-addressed store, hash-verified

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

Callers 1

isRotationMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected