[PS] 문제풀이/LeetCode2 617. Merge Two Binary Trees ( LeetCode / JAVA / 안산학생 ) 617. Merge Two Binary Trees Merge Two Binary Trees - 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 문제풀이 - 모든 합계는 root1에 저장한다. - root1, root2 전위 순회 하며 root1에 값을 저장한다. 코드 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right.. 2021. 9. 12. 763. Partition Labels ( LeetCode / JAVA / 안산학생 ) 763. Partition Labels Partition Labels - 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 문제풀이 - 새로운 배열을 만든다. - 입력 크기만큼 순회하며 [해당 알파벳]에 현재 순회 값을 저장한다. - 다시, 입력 크기만큼 순회하며 [순회 값 or 추 후 비교되어 큰 값]과 [해당 알파벳의 가장 뒷자리] 값을 비교하여 가장 큰 값을 저장한다. [순회 값]과 [알파벳의 가장 뒷자리] 수가 같아진다면 ans 배열에 등록한다. 코드 cla.. 2021. 9. 12. 이전 1 다음