编程题
祈暖
小白一枚
展开
-
[leetcode]数组-1.两数之和(简单)
题目描述:给定一个整数数组nums和一个目标值target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。示例:给定 nums = [2, 7, 11, 15], target = 9因为 nums[0] + nums[1] = 2 + 7 = 9所以返回 [0, 1]...原创 2019-03-25 10:32:01 · 174 阅读 · 0 评论 -
[leetcode]数组-26.删除排序数组中的重复项
题目描述:给定一个排序数组,你需要在原地删除重复出现的元素,使得每个元素只出现一次,返回移除后数组的新长度。不要使用额外的数组空间,你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成。示例1:给定数组 nums = [1,1,2], 函数应该返回新的长度 2, 并且原数组 nums 的前两个元素被修改为1,2.你不需要考虑数组中超出新长度后面的元素。示...原创 2019-03-25 17:10:03 · 125 阅读 · 0 评论 -
[leetcode]数组-27.移除元素
题目描述:给定一个数组nums和一个值val,你需要原地移除所有数值等于val的元素,返回移除后数组的新长度。不要使用额外的数组空间,你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成。元素的顺序可以改变。你不需要考虑数组中超出新长度后面的元素。示例 1:给定 nums = [3,2,2,3], val = 3,函数应该返回新的长度 2, 并且 n...原创 2019-03-25 20:15:34 · 118 阅读 · 0 评论 -
[leetcode]39. Combination Sum(Medium)
Description:Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidateswhere the candidate numbers sums to target.T...原创 2019-06-25 14:59:55 · 100 阅读 · 0 评论 -
[leetcode]40.Combination Sum II(Medium)
Description:Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidateswhere the candidate numbers sums to target.Each number in ...原创 2019-06-25 15:29:54 · 121 阅读 · 0 评论 -
[leetcode]51. N-Queens(Hard)
Description:The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.Given an integer n, return all distinct solutions to the n-queens ...原创 2019-06-25 16:31:03 · 118 阅读 · 0 评论