1 Star 1 Fork 0

wangzichu/ts-challenges

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
3062.Shift.ts 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
王子初 提交于 2023-04-20 18:23 . 第二次提交
/*
* @Author: error: error: git config user.name & please set dead value or install git && error: git config user.email & please set dead value or install git & please set dead value or install git
* @Date: 2023-04-13 14:29:27
* @LastEditors: error: error: git config user.name & please set dead value or install git && error: git config user.email & please set dead value or install git & please set dead value or install git
* @LastEditTime: 2023-04-13 14:31:25
* @FilePath: /ts-challenges/3062.Shift.ts
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
/*
3062 - Shift
-------
by jiangshan (@jiangshanmeta) #medium #array
### Question
Implement the type version of ```Array.shift```
For example
```typescript
type Result = Shift<[3, 2, 1]> // [2, 1]
```
> View on GitHub: https://tsch.js.org/3062
*/
/* _____________ Your Code Here _____________ */
type Shift<T> = T extends [infer R, ...infer S] ? [...S] : []
/* _____________ Test Cases _____________ */
import type { Equal, Expect } from '@type-challenges/utils'
type cases = [
Shift<unknown>,
Expect<Equal<Shift<[]>, []>>,
Expect<Equal<Shift<[1]>, []>>,
Expect<Equal<Shift<[3, 2, 1]>, [2, 1]>>,
Expect<Equal<Shift<['a', 'b', 'c', 'd']>, ['b', 'c', 'd']>>,
]
/* _____________ Further Steps _____________ */
/*
> Share your solutions: https://tsch.js.org/3062/answer
> View solutions: https://tsch.js.org/3062/solutions
> More Challenges: https://tsch.js.org
*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wang-zichu/ts-challenges.git
git@gitee.com:wang-zichu/ts-challenges.git
wang-zichu
ts-challenges
ts-challenges
master

搜索帮助