We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcb6801 commit cbea1feCopy full SHA for cbea1fe
Search/LinearSearch.js
@@ -4,7 +4,7 @@
4
* for the target value until a match is found or until all the elements
5
* have been searched.
6
*
7
- * [Reference](https://en.wikipedia.org/wiki/Linear_search)
+ * @see https://en.wikipedia.org/wiki/Linear_search
8
*/
9
function SearchArray(searchNum, ar, output = (v) => console.log(v)) {
10
const position = Search(ar, searchNum)
0 commit comments