본문 바로가기
728x90
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.
leetcode 136) Single Number LV. Easy 😎 https://leetcode.com/problems/single-number/ Single 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 non-empty array of integers nums, every element appears twice except for one. Find that single one. You must implement a solution with a linear runtime.. 2022. 2. 15.
leetcode 104) Maximum Depth of Binary Tree LV. Easy 😎 https://leetcode.com/problems/maximum-depth-of-binary-tree/ Maximum Depth of Binary Tree - 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 root of a binary tree, return its maximum depth. A binary tree's maximum depth is the number of nodes along the longest.. 2022. 2. 14.
leetcode 78) Subsets LV. Medium 🧐 https://leetcode.com/problems/subsets/ Subsets - 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 integer array nums of unique elements, return all possible subsets (the power set). The solution set must not contain duplicate subsets. Return the solution in .. 2022. 2. 13.
leetcode 127) Word Ladder LV. Hard 🥵 https://leetcode.com/problems/word-ladder/ Word Ladder - 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 문제 A transformation sequence from word beginWord to word endWord using a dictionary wordList is a sequence of words beginWord -> s1 -> s2 -> ... -> sk such that: Ever.. 2022. 2. 12.
leetcode 560) Subarray Sum Equals K LV. Medium 🧐 https://leetcode.com/problems/subarray-sum-equals-k/ Subarray Sum Equals K - 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 integers nums and an integer k, return the total number of continuous subarrays whose sum equals to k. Example 1: Input: nu.. 2022. 2. 11.
leetcode 567) Permutation in String LV. Medium 🧐 https://leetcode.com/problems/permutation-in-string/ Permutation in String - 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 strings s1 and s2, return true if s2 contains a permutation of s1, or false otherwise. In other words, return true if one of s1's p.. 2022. 2. 11.
728x90