Without using any high level language methods (such as indexOf()) write a function that takes two strings (A and B) and checks to see if B is in A, if it is return the index that B starts at.
Anonymous
function myFunc(String A, String B){ int i, j; Boolean check = true; if(A.length == 0) return 0; for(i=0;i
Check out your Company Bowl for anonymous work chats.