Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 2.19 KB

File metadata and controls

19 lines (12 loc) · 2.19 KB

Pop medium #array

by Anthony Fu @antfu

Take the Challenge    简体中文 日本語

TypeScript 4.0 is recommended in this challenge

Implement a generic Pop<T> that takes an Array T and returns an Array without it's last element.

For example

type arr1 = ['a', 'b', 'c', 'd']
type arr2 = [3, 2, 1]

type re1 = Pop<arr1> // expected to be ['a', 'b', 'c']
type re2 = Pop<arr2> // expected to be [3, 2]

Extra: Similarly, can you implement Shift, Push and Unshift as well?


Back Share your Solutions Check out Solutions

Related Challenges

14・First of Array 15・Last of Array