Given the roots of two binary trees p and q, write a function to check if they are the same or not.
Two binary trees are considered the same if they are structurally identical, and the nodes have the same value.
Example 1:
Input: p = [1,2,3], q = [1,2,3]
Output: true
Example 2:
Input: p = [1,2], q = [1,null,2]
Output: false
Example 3:
Input: p = [1,2,1], q = [1,1,2]
Output: false
Constraints:
- The number of nodes in both trees is in the range [0, 100].
- -104 <= Node.val <= 104
해설 풀이
https://www.youtube.com/watch?v=f1cFqsdlmxg
'컴퓨터공학 > LeetCode Solutions' 카테고리의 다른 글
개발자가 되는 방법!! 코딩세끼 릿코드 스터디 지금 시작합니다 [안내영상] (0) | 2023.10.14 |
---|---|
릿코드가 도대체 뭐야? 개발자가 되고 싶으면 뭐 부터 공부해야하지? 무조건 공부해야하는 코딩 테스트 준비!! (0) | 2023.10.14 |
[LeetCode] 1299. Replace Elements with Greatest Element on Right Side (0) | 2023.01.13 |
[LeetCode] 13. Roman to Integer (0) | 2023.01.13 |
[LeetCode] 504. Base 7 (0) | 2023.01.12 |