Search:

Type: Posts; User: Junky

Search: Search took 0.15 seconds.

  1. Re: How do you find the the exact index of an element that matches a search in an array?

    Are you expecting the creators of java to anticipate every single function that you can think of and write it for you? Just so when you write your own program it will be a series of method calls to...
  2. Re: How do you find the the exact index of an element that matches a search in an array?

    Iterate over the array and compare each element to the target. When you get a match you have found the index. This is best achieved using a method that can return the index as soon as it is found or...
Results 1 to 2 of 2