questions/00015-medium-last/README.ko.md
이 챌린지에는 TypeScript 4.0 사용이 권장됩니다.
배열 T를 사용하고 마지막 요소를 반환하는 제네릭 Last<T>를 구현합니다.
예시
type arr1 = ['a', 'b', 'c']
type arr2 = [3, 2, 1]
type tail1 = Last<arr1> // expected to be 'c'
type tail2 = Last<arr2> // expected to be 1
<a href="../../README.ko.md" target="_blank"></a> <a href="https://tsch.js.org/15/answer/ko" target="_blank"></a> <a href="https://tsch.js.org/15/solutions" target="_blank"></a> <hr><h3>관련된 문제들</h3><a href="https://github.com/type-challenges/type-challenges/blob/main/questions/00014-easy-first/README.ko.md" target="_blank"></a> <a href="https://github.com/type-challenges/type-challenges/blob/main/questions/00016-medium-pop/README.ko.md" target="_blank"></a> <!--info-footer-end-->