Commit Graph

3 Commits

Author SHA1 Message Date
winsonrich
ae147f519a Update index.md
1. while the array is larger than the target number of variable:"searchFor" , it is no need to search for the result that is larger than the "search target", therefore, we should break the loop to save more resources.
2. the variable j in the statement of "System.out.println("i = " + j); " is not declare and initialize at the beginning, also, var j in the while loop does not match with the variable i which is the result we want to display. Therefore, this statement should correct to "System.out.println("i = " + i); " so as to display the result of each loop correctly.
2019-06-25 13:54:39 +08:00
winsonrich
5da9e0bbca Update index.md 2019-06-25 13:51:52 +08:00
Mrugesh Mohapatra
da0df12ab7 fix(guide): simplify directory structure 2018-10-16 21:32:40 +05:30