Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 1.62 KB

File metadata and controls

12 lines (8 loc) · 1.62 KB

LastIndexOf 中等 #array

by jiangshan @jiangshanmeta

接受挑战    English

实现类型版本的 Array.lastIndexOf, LastIndexOf<T, U> 接受数组 T, any 类型 U, 如果 U 存在于 T 中, 返回 U 在数组 T 中最后一个位置的索引, 不存在则返回 -1

For example:

type Res1 = LastIndexOf<[1, 2, 3, 2, 1], 2> // 3
type Res2 = LastIndexOf<[0, 0, 0], 2> // -1

返回首页 分享你的解答 查看解答