MCPcopy Create free account
hub / github.com/Tiwarishashwat/InterviewCodes / find

Method find

ParsingABooleanExpression.java:43–50  ·  view source on GitHub ↗
(ArrayList<Character> list ,char val)

Source from the content-addressed store, hash-verified

41 }
42 }
43 public boolean find(ArrayList<Character> list ,char val){
44 for(char ch : list){
45 if(ch == val){
46 return true;
47 }
48 }
49 return false;
50 }
51}

Callers 1

evaluateMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected