목록PS/LeetCode (576)
넘치게 채우기
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..
https://leetcode.com/problems/monotonic-array/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 문제 An array is monotonic if it is either monotone increasing or monotone decreasing. An arr..
https://leetcode.com/problems/sort-array-by-parity/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, move all the even integers at the beginning of the arr..
https://leetcode.com/problems/longest-string-chain/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 You are given an array of words where each word consists of lowerca..