给定一个包含红色、白色和蓝色,一共 n 个元素的数组,原地对它们进行排序,使得相同颜色的元素相邻,并按照红色、白色、蓝色顺序排列。
Given a collection of numbers, return all possible permutations.
Given a collection of distinct integers, return all possible permutations.
Given two integers n and k, return all possible combinations of k numbers out o...
//TODO //TODO //TODO //TODO //TODO //TODO //TODO //TODO //TODO //TODO //TODO //T...
Given an array of integers, return indices of the two numbers such that they add...
给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?请你找出所有和为 0 且不重复...
给定一个 m x n 二维字符网格 board 和一个字符串单词 word 。如果 word 存在于网格中,返回 true ;否则,返回 false 。
LeetCode-HOT-100 力扣 (LeetCode) LeetCode 热题 HOT 100 ⚡ 如果你有问题 https://webvueblog.github.io/LeetCode-HOT
leetcode 1①暴力解决:两个for循环,但是注意第二个循环j = i + 1,而不是从0开始,因为从0开始会重复判断②哈希,第一种方法主要问题在于查找target-nums[i],遍历数组,使用...leetcode3同样使用set,遍历数组,每次先判断set中是否有该元素①如果没有,当前最长无重复子串数+1。
Given an array of strings, return all groups of strings that are anagrams.
175.【简单】组合两个表 select p.FirstName,p.LastName,a.City,a.State from person p left jo...
思路 用size表示在i处,字符串进行解码后的长度。 如果有一个解码后的字符串为appleappleappleappleappleapple,且K=24,那...
来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/play-with-chips 【示例 1】 输入:chips = [1,2,3] 输出:1 解释...来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/subsets 【示例】 输入: nums = [1,2,3] 输出: [ [3],...【示例1】 输入: 5 输出: True 解释: 1 * 1 + 2 * 2 = 5 【示例2】 输入: 3 输出: False 来源:力扣(LeetCode) 链接:https://leetcode-cn.com
Given a triangle, find the minimum path sum from top to bottom. Each step you ma...
在一个从左到右,从上到下均有序的二维数组中,找到从小到第k个数字,这里需要注意,不要求一定要是唯一的值,即假设存在这样一个序列1,2,2,3,则第三个数字是2而...
others = current total += current return total Reference https://leetcode.com.../problems/calculate-money-in-leetcode-bank/
领取专属 10元无门槛券
手把手带您无忧上云