[LeetCode] 102. Binary Tree Level Order Traversal
·
🚩 코딩테스트/알고리즘
문제 https://leetcode.com/problems/binary-tree-level-order-traversal/ Binary Tree Level Order Traversal - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 풀이 BFS를 사용해 문제 풀이를 하였다. 같은 깊이의 node들의 val 값을 임시 리스트에 저장하고 이를 결과 리스트에 추가하였다. 코드 from collections import deque # Definition for a bi..