티스토리 뷰
Algorithm/LeetCode
[LeetCode - Daily Challenge] 203. Remove Linked List Elements
Jaime.Lee 2021. 11. 13. 10:30Problem
Given the head of a linked list and an integer val, remove all the nodes of the linked list that has Node.val == val, and return the new head.
Example 1:
Input: head = [1,2,6,3,4,5,6], val = 6
Output: [1,2,3,4,5]
Example 2:
Input: head = [], val = 1
Output: []
Example 3:
Input: head = [7,7,7,7], val = 7
Output: []
Constraints:
- The number of nodes in the list is in the range [0, 104].
- 1 <= Node.val <= 50
- 0 <= val <= 50
Solution
LinkedList가 주어졌을 때 특정 값을 가진 노드를 제거한 LinkedList를 반환하는 문제입니다.
Easy 레벨이기도 하고 너무 LinkedList를 구현하는 정도의 아주 쉬운 난이도라 바로 소스 코드 첨부로 설명을 대체하겠습니다.
import io.lcalmsky.leetcode.ListNode;
public class Solution {
public ListNode removeElements(ListNode head, int val) {
ListNode root = new ListNode(0);
root.next = head;
ListNode current = root;
while (current.next != null) {
if (current.next.val != val) {
current = current.next;
continue;
}
current.next = current.next.next;
}
return root.next;
}
}
Test
package io.lcalmsky.leetcode.remove_linked_list_elements;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import io.lcalmsky.leetcode.ListNode;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void givenLinkedList_whenRemoveElements_thenCorrect() {
assertAll(
() -> test(ListNode.of(1, 2, 6, 3, 4, 5, 6), 6, ListNode.of(1, 2, 3, 4, 5))
);
}
private void test(ListNode given, int val, ListNode expected) {
// when
Solution removeLinkedListElements = new Solution();
ListNode actual = removeLinkedListElements.removeElements(given, val);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode - Daily Challenge] 1286. Iterator for Combination (0) | 2021.11.15 |
---|---|
[LeetCode - Daily Challenge] 739. Daily Temperatures (0) | 2021.11.14 |
[LeetCode - Daily Challenge] 1413. Minimum Value to Get Positive Step by Step Sum (0) | 2021.11.12 |
[LeetCode - Daily Challenge] 122. Best Time to Buy and Sell Stock II (0) | 2021.11.11 |
[LeetCode - Daily Challenge] 404. Sum of Left Leaves (0) | 2021.11.05 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Jackson
- Java
- Spring Boot Tutorial
- 스프링 부트
- spring boot app
- r
- 스프링 부트 튜토리얼
- 스프링 데이터 jpa
- 알고리즘
- 스프링 부트 애플리케이션
- proto3
- 클린 아키텍처
- 함께 자라기 후기
- intellij
- 헥사고날 아키텍처
- Spring Boot
- 스프링부트
- 스프링 부트 회원 가입
- @ManyToOne
- JPA
- spring boot application
- Spring Boot JPA
- JSON
- Spring Data JPA
- 함께 자라기
- QueryDSL
- leetcode
- gRPC
- spring boot jwt
- Linux
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함