본문 바로가기
728x90
leetcode 165) Compare Version Numbers LV. Medium 🧐 https://leetcode.com/problems/compare-version-numbers/ Compare Version Numbers - 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 문제 Given two version numbers, version1 and version2, compare them. Version numbers consist of one or more revisions joined by a dot '.'. Eac.. 2022. 2. 25.
leetcode 148) Sort List LV. Medium 🧐 https://leetcode.com/problems/sort-list/ Sort List - 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 문제 Given the head of a linked list, return the list after sorting it in ascending order. Example 1: Input: head = [4,2,1,3] Output: [1,2,3,4] Example 2: Input: head = [.. 2022. 2. 24.
leetcode 133) Clone Graph LV. Medium 🧐 https://leetcode.com/problems/clone-graph/ Clone Graph - 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 문제 Given a reference of a node in a connected undirected graph. Return a deep copy (clone) of the graph. Each node in the graph contains a value (int) and a list (L.. 2022. 2. 23.
leetcode 171) Excel Sheet Column Number LV. Easy 😎 https://leetcode.com/problems/excel-sheet-column-number/ Excel Sheet Column Number - 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 문제 Given a string columnTitle that represents the column title as appear in an Excel sheet, return its corresponding column number. For ex.. 2022. 2. 22.
leetcode 169) Majority Element LV. Easy 😎 https://leetcode.com/problems/majority-element/ Majority Element - 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 문제 Given an array nums of size n, return the majority element. The majority element is the element that appears more than ⌊n / 2⌋ times. You may assume that.. 2022. 2. 21.
leetcode 1288) Remove Covered Intervals LV. Medium 🧐 https://leetcode.com/problems/remove-covered-intervals/ Remove Covered Intervals - 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 문제 Given an array intervals where intervals[i] = [li, ri] represent the interval [li, ri), remove all intervals that are covered by anothe.. 2022. 2. 20.
leetcode 1675) Minimize Deviation in Array LV. Hard 🥵 https://leetcode.com/problems/minimize-deviation-in-array/ Minimize Deviation in Array - 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 문제 You are given an array nums of n positive integers. You can perform two types of operations on any element of the array any number .. 2022. 2. 19.
leetcode 402) Remove K Digits LV. Medium 🧐 https://leetcode.com/problems/remove-k-digits/ Remove K Digits - 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 문제 Given string num representing a non-negative integer num, and an integer k, return the smallest possible integer after removing k digits from num. Exampl.. 2022. 2. 18.
leetcode 39) Combination Sum LV. Medium 🧐 https://leetcode.com/problems/combination-sum/ Combination Sum - 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 문제 Given an array of distinct integers candidates and a target integer target, return a list of all unique combinations of candidates where the chosen numbe.. 2022. 2. 17.
leetcode 24) Swap Nodes in Pairs LV. Medium 🧐 https://leetcode.com/problems/swap-nodes-in-pairs/ Swap Nodes in Pairs - 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 문제 Given a linked list, swap every two adjacent nodes and return its head. You must solve the problem without modifying the values in the list's nod.. 2022. 2. 16.
728x90