목록PS/LeetCode (619)
넘치게 채우기
https://leetcode.com/problems/build-array-where-you-can-find-the-maximum-exactly-k-comparisons/description/ LeetCode - The World's Leading Online Programming Learning PlatformLevel 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문제 유형 : 배열 / 다이나믹 프로그래밍문제 난이도 : Hard 문제You are given three integers n,..
https://leetcode.com/problems/integer-break/description/ LeetCode - The World's Leading Online Programming Learning Platform 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 문제 유형 : 정수론, 수학 문제 난이도 : Medium 문제 Given an integer n, break it into the sum of k positive integers, where k >= 2, and..
https://leetcode.com/problems/majority-element-ii/description/ LeetCode - The World's Leading Online Programming Learning Platform 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 문제 유형 : 해시, 배열 문제 난이도 : Medium 문제 Given an integer array of size n, find all elements that appear more than ⌊ n/..
https://leetcode.com/problems/longest-consecutive-sequence/description/ LeetCode - The World's Leading Online Programming Learning Platform 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 문제 유형 : 해시, 배열, (우선순위 큐..?) 문제 난이도 : Medium 문제 Given an unsorted array of integers nums, return the len..
https://leetcode.com/problems/design-hashmap/description/?envType=daily-question&envId=2023-10-04 LeetCode - The World's Leading Online Programming Learning Platform 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 문제 유형 : 구현 / 해시 문제 난이도 : Easy 문제 Design a HashMap without using any built-in ..
https://leetcode.com/problems/contains-duplicate/description/ LeetCode - The World's Leading Online Programming Learning Platform 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 문제 유형 : 해시, 배열 문제 난이도 : Easy 문제 Given an integer array nums, return true if any value appears at least twice in t..
https://leetcode.com/problems/number-of-good-pairs/description/ LeetCode - The World's Leading Online Programming Learning Platform 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 문제 유형 : 배열 / 구현 문제 난이도 : Easy 문제 Given an array of integers nums, return the number of good pairs. A pair (i, j..
https://leetcode.com/problems/remove-colored-pieces-if-both-neighbors-are-the-same-color/description/ LeetCode - The World's Leading Online Programming Learning Platform 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 문제 유형 : 그리디, 배열 문제 난이도 : Medium 문제 There are n pieces arranged in a line,..
https://leetcode.com/problems/reverse-words-in-a-string-iii/description/ LeetCode - The World's Leading Online Programming Learning Platform 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 문제 유형 : 배열, 문자열 처리 문제 난이도 : Easy 문제 Given a string s, reverse the order of characters in each word wit..
https://leetcode.com/problems/132-pattern/description/ LeetCode - The World's Leading Online Programming Learning Platform 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 문제 유형 : 스택 / 배열 문제 난이도 : Medium 문제 Given an array of n integers nums, a 132 pattern is a subsequence of three integers n..