상위 150개 인터뷰쉬움

목록 끝에서 N번째 노드 제거

'목록 끝에서 N번째 노드 제거' 문제에 대한 자세한 가이드 및 Python 구현.

문제 설명

쉬움

연결된 목록의 헤드가 주어지면 목록 끝에서 n번째 노드를 제거하고 해당 헤드를 반환합니다.

연결된 목록은 Python 목록으로 표시됩니다. 제거 후 목록을 반환하는 removeNthFromEnd(head: list, n: int) -> list 함수를 구현하세요.

제약
  • The number of nodes in the list is sz
  • 1 <= sz <= 30
  • 0 <= Node.val <= 100
  • 1 <= n <= sz

Example 1
Input
[1,2,3,4,5], 2
Output
[1,2,3,5]
Explanation

The 2nd node from the end is 4. After removing it, the list becomes 1->2->3->5.

Example 2
Input
[1], 1
Output
[]
Explanation

There is only one node and we remove it, so the list becomes empty.

Example 3
Input
[1,2], 1
Output
[1]
Explanation

The 1st node from the end is 2. After removing it, the list becomes [1].

Need a Hint?
세트나 힙과 같은 연결 목록 관련 데이터 구조를 사용하는 것을 고려해보세요.
Edge Cases to Watch
  • 빈 입력 구조
  • 단일 요소 입력
  • 큰 수치 범위

해결할 준비가 되셨나요?

Open the problem in PyRun's browser-based Python editor. Your code runs fully offline — no server required.

편집기에서 열기
Found this breakdown helpful?

PyRun is built and maintained by an independent solo developer. If this helped your interview prep, consider buying a coffee!

Buy me a coffee

권장 Python 리소스

관련 대화형 튜토리얼, 치트 시트, 코드 비교를 통해 지식을 확장하세요.