Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 1.37 KB

File metadata and controls

12 lines (7 loc) · 1.37 KB

Shift medium #array

by jiangshan @jiangshanmeta

Take the Challenge

Implement the type version of Array.shift

For example

type Result = Shift<[3, 2, 1]> // [2, 1]

Back Share your Solutions Check out Solutions

Related Challenges

16・Pop