questions/00016-medium-pop/README.ja.md
この課題ではTypeScript 4.0が推奨されます
配列 T を受け取り、最後の要素を除いた配列を返す汎用的な Pop<T> を実装してください。
例えば
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]
おまけ: 同様に Shift、 Push、 Unshift も実装できますか?
<a href="../../README.ja.md" target="_blank"></a> <a href="https://tsch.js.org/16/answer/ja" target="_blank"></a> <a href="https://tsch.js.org/16/solutions" target="_blank"></a> <hr><h3>関連する課題</h3><a href="https://github.com/type-challenges/type-challenges/blob/main/questions/00014-easy-first/README.ja.md" target="_blank"></a> <a href="https://github.com/type-challenges/type-challenges/blob/main/questions/00015-medium-last/README.ja.md" target="_blank"></a> <!--info-footer-end-->