You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
else if(s.charAt(i)>='A' && s.charAt(i)<='Z') extraCap++; //'elseif' used instead of just 'if' to avoid miscalculation of cap letters due to checking of simultaneous condition
}
return(c==pattern.length() && extraCap==0);
}
public List<Boolean> camelMatch(String[] queries, String pattern) {