mirror of
https://github.com/krahets/hello-algo.git
synced 2026-04-23 18:11:45 +08:00
Added linear search docs for Typescript
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
import ListNode from '../module/ListNode.ts';
|
||||
|
||||
/* 线性查找(数组) */
|
||||
/* 线性查找(数组)*/
|
||||
function linearSearchArray(nums: number[], target: number): number {
|
||||
// 遍历数组
|
||||
for (let i = 0; i < nums.length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user