Search posts...
class Solution { public int solution(String str1, String str2) { return str2.contains(str1) ? 1 : 0; } }
stupefyee