yassmin

Untitled

May 1st, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. boolean check_min (String sb) {
  2. String[] t = mainString.split(",");
  3. for (int i = 0; i < t.length; i++) {
  4. if (sb.contains(t[i]) == false) {
  5. return false;
  6. }
  7. }
  8. return true;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment