-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(tail): add tail
function
#143
Conversation
@hautest is attempting to deploy a commit to the Toss Team on Vercel. A member of the Team first needs to authorize it. |
첫 번째 요소를 제외한 모든 요소가 포함된 새 배열을 반환합니다. | ||
|
||
이 함수는 배열을 입력받아 첫 번째 요소를 제외한 모든 요소를 포함하는 새 배열을 반환합니다. 입력 배열이 비어 있거나 요소가 하나만 있는 경우 빈 배열을 반환합니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
첫 번째 요소를 제외한 모든 요소가 포함된 새 배열을 반환합니다. | |
이 함수는 배열을 입력받아 첫 번째 요소를 제외한 모든 요소를 포함하는 새 배열을 반환합니다. 입력 배열이 비어 있거나 요소가 하나만 있는 경우 빈 배열을 반환합니다. | |
배열에서 첫 번째 요소를 제외한 나머지 요소가 포함된 새 배열을 반환해요. | |
입력 배열이 비어 있거나, 요소가 하나만 있는 경우에는, 빈 배열을 반환해요. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks great. Thanks for your great contribution!
#95
This pull request implements a
tail
function that returns a new array with all elements except for the first. The function takes an array as a parameter and returns a new array containing all elements except for the first one. If the input array is empty or has only one element, the function returns an empty array.