34-在排序数组中查找元素的第一个和最后一个位置(Find First and Last Position of Element in Sorted Array) 原文链接: https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array 英文原文Given an array of i 2021-12-03 二分查找数组 中等
35-搜索插入位置(Search Insert Position) 原文链接: https://leetcode-cn.com/problems/search-insert-position 英文原文Given a sorted array of distinct integers and a targ 2021-12-03 二分查找数组 简单
36-有效的数独(Valid Sudoku) 原文链接: https://leetcode-cn.com/problems/valid-sudoku 英文原文Determine if a 9 x 9 Sudoku board is valid. Onl 2021-12-03 哈希表数组矩阵 中等
37-解数独(Sudoku Solver) 原文链接: https://leetcode-cn.com/problems/sudoku-solver 英文原文Write a program to solve a Sudoku puzzle by filling the empty 2021-12-03 回溯数组矩阵 困难
39-组合总和(Combination Sum) 原文链接: https://leetcode-cn.com/problems/combination-sum 英文原文Given an array of distinct integers candidates and a target 2021-12-03 回溯数组 中等
40-组合总和 II(Combination Sum II) 原文链接: https://leetcode-cn.com/problems/combination-sum-ii 英文原文Given a collection of candidate numbers (candidates) and 2021-12-03 回溯数组 中等
41-缺失的第一个正数(First Missing Positive) 原文链接: https://leetcode-cn.com/problems/first-missing-positive 英文原文Given an unsorted integer array nums, return the sma 2021-12-03 哈希表数组 困难
42-接雨水(Trapping Rain Water) 原文链接: https://leetcode-cn.com/problems/trapping-rain-water 英文原文Given n non-negative integers representing an elevation 2021-12-03 动态规划单调栈双指针数组栈 困难
43-字符串相乘(Multiply Strings) 原文链接: https://leetcode-cn.com/problems/multiply-strings 英文原文Given two non-negative integers num1 and num2 represented 2021-12-03 字符串数学模拟 中等
44-通配符匹配(Wildcard Matching) 原文链接: https://leetcode-cn.com/problems/wildcard-matching 英文原文Given an input string (s) and a pattern (p), implement wi 2021-12-03 动态规划字符串贪心递归 困难