프로그래밍
-
[LeetCode/Python] 6/21 Pascal’s Triangle 문제 풀이프로그래밍/LeetCode 2021. 6. 22. 23:14
https://leetcode.com/problems/pascals-triangle/ Pascal's Triangle - 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 1. 문제 Summary numRows가 주어졌을 때, Pascal Triangle이 배열 형식으로 출력되도록 하세요. Input : numRows = 5 Output : [[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1]] 시각적인 설명은 위의 사이트에 잘 나와있다. 2. ..
-
[LeetCode/C#/Segment Tree] 6/19 Range Sum Query - Mutable 문제 풀이프로그래밍/LeetCode 2021. 6. 19. 16:27
https://leetcode.com/problems/range-sum-query-mutable/ 문제 출처 사이트 : Range Sum Query - Mutable - 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 1. 문제 Summary 주어진 정수 array에서 (1)특정 범위를 Sum하는 함수와 (2)array의 특정 index를 Update하는 함수를 맹글어라. Input ["NumArray", "sumRange", "update", "sumRange"..