일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 코테
- 백준 18222
- dfs
- 백준 16935
- 프로그래머스
- 파이썬
- 분할정복
- java 프로그래머스
- 자바 리트코드
- 스프링 에러
- 카카오
- 자바 5464
- 구현
- java leetcode
- DP
- daily challenge
- BFS
- leetcode 1721
- 리트코드 1557
- 그래프 자바
- 리트코드
- 백준
- leetcode
- 프로그래머스 java
- 자바
- 리트코드 자바
- 인텔리제이 에러
- 코딩테스트
- Java
- 스택
- Today
- Total
목록leetcode (3)
레벨업 일지
문제 https://leetcode.com/problems/range-sum-query-mutable/ Range Sum Query - Mutable - LeetCode Can you solve this real interview question? Range Sum Query - Mutable - Given an integer array nums, handle multiple queries of the following types: 1. Update the value of an element in nums. 2. Calculate the sum of the elements of nums between indices lef leetcode.com 알아야 할 개념 세그먼트 트리 풀이 풀이 알고리즘은 다음과 ..
문제 https://leetcode.com/problems/3sum-smaller/description/ 3Sum Smaller - LeetCode 3Sum Smaller - 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 Given an array of n integers nums and an integer target, find the number of index triplets i, j, k with 0 int: nums.sort() ans = 0 for i in range..
문제 가장 최대가 되는 연속 부분합 구하기 https://leetcode.com/problems/maximum-subarray/description/ Maximum Subarray - LeetCode Maximum Subarray - Given an integer array nums, find the subarray with the largest sum, and return its sum. Example 1: Input: nums = [-2,1,-3,4,-1,2,1,-5,4] Output: 6 Explanation: The subarray [4,-1,2,1] has the largest sum 6. Example 2: Input: nums = [ leetcode.com 풀이 연속 부분합 이라 함은 [ 0..