Skip to content
字数
39 字
阅读时间
1 分钟
ts
function search(nums: number[], target: number): number {

    let index: number = -1

    nums.map((val, i) => {

        if (val == target) {

            index = i

        }

    })

    return index

};

贡献者

The avatar of contributor named as sunchengzhi sunchengzhi

文件历史

撰写