목록LeetCode (567)
넘치게 채우기
https://leetcode.com/problems/max-dot-product-of-two-subsequences/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 문제 유형 : 다이나믹 프로그래밍 문제 난이도 : Hard 문제 Given two arrays nums1 and nums2. Return the maximum dot pro..
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/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/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/linked-list-cycle/description/ Linked List Cycle - LeetCode Can you solve this real interview question? Linked List Cycle - Given head, the head of a linked list, determine if the linked list has a cycle in it. There is a cycle in a linked list if there is some node in the list that can be reached again by continuo leetcode.com 문제 유형 : 연결 리스트, 투 포인터 문제 난이도 : Easy 문제..