1. 题目 You are given a string, s, and a list of words, words, that are all of the same length. Find all startin…
分类:LeetCode
2018-09-15 596. Classes More Than 5 Students
题意:给你一个表,用MYSQL找出含有学生数量不小于5的班级(学生不能重复)。 解题思路:先用一条select语句得出每个班级对应的不同的学生数量,然后再在此基础上查找数量不小于五的班级。 # Write your My…
奇偶链表
奇偶链表 给定一个单链表,把所有的奇数节点和偶数节点分别排在一起。请注意,这里的奇数节点和偶数节点指的是节点编号的奇偶性,而不是节点的值的奇偶性。 请尝试使用原地算法完成。你的算法的空间复杂度应为 O(1),时间复杂度应…
125. 考证回文串
给定一个字符串,考证它是不是是回文串,只斟酌字母和数字字符,能够疏忽字母的大小写。 申明:本题中,我们将空字符串定义为有用的回文串。 示例 1: 输入: “A man, a plan, a canal: Pa…
LeetCode | Climbing Stairs
题目: You are climbing a stair case. It takes n steps to reach to the top. Each time you can either cl…
LeetCode 088 Merge Sorted Array
题目描述 Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: You ma…
LeetCode 082 Remove Duplicates from Sorted List II
题目描述 Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers f…
LeetCode 078 Subsets
题目描述 Given a set of distinct integers, nums, return all possible subsets. Note: Elements in a subset must be i…
[Leetcode] Remove Duplicates from Sorted Array 移除有序数组中的重复元素
Remove Duplicates from Sorted Array I Given a sorted array, remove the duplicates in place such that each elem…
【leetcode】85. Maximal Rectangle 0/1矩阵的最大全1子矩阵
1. 题目 Given a 2D binary matrix filled with 0’s and 1’s, find the largest rectangle containing only…
LeetCode 183. Customers Who Never Order
LeetCode 183. Customers Who Never Order 题目 Suppose that a website contains two tables, the Customers table and…
[剑指offer] 斐波那契数列
本文首发于我的个人博客:尾尾部落 题目描述 大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项(从0开始,第0项为0)。 n<=39 解题思路 公式: f(n) = n, n <= …