티스토리 뷰
Algorithm/LeetCode
[LeetCode - Daily Challenge] 404. Sum of Left Leaves
Jaime.Lee 2021. 11. 5. 10:30Problem
Given the root of a binary tree, return the sum of all left leaves.
Example 1:
Input: root = [3,9,20,null,null,15,7]
Output: 24
Explanation: There are two left leaves in the binary tree, with values 9 and 15 respectively.
Example 2:
Input: root = [1]
Output: 0
Constraints:
- The number of nodes in the tree is in the range [1, 1000].
- -1000 <= Node.val <= 1000
Solution
이진 트리에서 모든 왼쪽 leaf 노드의 합을 구하는 문제입니다.
왼쪽 노드가 leaf 노드일 때 해당 노드의 값을 계속 더해주고, leaf 노드가 아닐 때는 왼쪽 노드를 재귀호출로 다시 탐색해 반복합니다.
왼쪽 노드를 다 탐색한 다음에는 오른쪽 노드도 동일하게 탐색하여 오른쪽 노드의 왼쪽 leaf 노드가 존재하면 값을 더해줘 반환합니다.
public class Solution {
public int sumOfLeftLeaves(TreeNode root) {
if (root == null) {
return 0;
}
int sum = 0;
if (root.left != null) {
if (isLeaf(root.left)) {
sum += root.left.val;
} else {
sum += sumOfLeftLeaves(root.left);
}
}
sum += sumOfLeftLeaves(root.right);
return sum;
}
private boolean isLeaf(TreeNode node) {
return node.left == null && node.right == null;
}
}
Test
package io.lcalmsky.leetcode.sum_of_left_leaves;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import io.lcalmsky.leetcode.TreeNode;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void givenTreeNodes_whenSumLeftLeaves_thenCorrect() {
assertAll(
() -> test(TreeNode.of(3, 9, 20, null, null, 15, 7), 24)
);
}
private void test(TreeNode given, int expected) {
// when
Solution sumOfLeftLeaves = new Solution();
int actual = sumOfLeftLeaves.sumOfLeftLeaves(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[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] 129. Sum Root to Leaf Numbers (0) | 2021.11.03 |
[LeetCode - Daily Challenge] 130. Surrounded Regions (0) | 2021.11.01 |
[LeetCode - Daily Challenge] 994. Rotting Oranges (0) | 2021.10.29 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- intellij
- JPA
- spring boot application
- 스프링 부트 회원 가입
- 알고리즘
- spring boot jwt
- Jackson
- QueryDSL
- 스프링부트
- r
- leetcode
- 함께 자라기
- @ManyToOne
- spring boot app
- JSON
- gRPC
- Linux
- Java
- Spring Data JPA
- 스프링 부트
- proto3
- 스프링 부트 애플리케이션
- 클린 아키텍처
- Spring Boot JPA
- 헥사고날 아키텍처
- 스프링 부트 튜토리얼
- 함께 자라기 후기
- 스프링 데이터 jpa
- Spring Boot
- Spring Boot Tutorial
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함