2022년 Dev History
2021 Dev History에 이어
2022년에도 내가 어떤것에 관심을 갖고
어떤 공부를 했고 그로 인해 어떤 성장을 했는지 기록해두자.
Given the root of a binary tree and an integer targetSum, return the number of paths where the sum of the values along the path equals targetSum.
The path does not need to start or end at the root or a leaf, but it must go downwards (i.e., traveling only from parent nodes to child nodes).
The median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value and the median is the mean of the two middle values.
For example, for arr = [2,3,4], the median is 3.
For example, for arr = [2,3], the median is (2 + 3) / 2 = 2.5.
처음 $100를 달성했을 때는 2년이라는 시간이 걸렸지만
두번째는 2021년 1월부터 2021년 11월 말까지 약 1년 정도 걸렸다.
Given the root of a binary tree, check whether it is a mirror of itself (i.e., symmetric around its center).