题解 | #查找元素位置#
查找元素位置
https://www.nowcoder.com/practice/0a9af9cb20c34babb6232126e019c74d
arr map+filter
function findAllOccurrences(arr, target) {
return arr
.map((o, i) => o == target? i: undefined)
.filter(o => o != undefined)
}
查找元素位置
https://www.nowcoder.com/practice/0a9af9cb20c34babb6232126e019c74d
arr map+filter
function findAllOccurrences(arr, target) {
return arr
.map((o, i) => o == target? i: undefined)
.filter(o => o != undefined)
}
相关推荐