本文首发于我的个人博客:尾尾部落 题目描述 LL今天心情特别好,因为他去买了一副扑克牌,发现里面居然有2个大王,2个小王(一副牌原本是54张_)…他随机从中抽出了5张牌,想测测自己的手气,看看能不能抽到顺子,…
标签:LeetCode
【LeetCode】- Kth Smallest Element in a BST(二叉搜索树第k小的数)
1、题目描述 Given a binary search tree, write a function kthSmallest to find the kth smallest element in it. Note: …
896. Monotonic Array
描述 An array is monotonic if it is either monotone increasing or monotone decreasing. An array A is monotone in…
725. Split Linked List in Parts
Medium Given a (singly) linked list with head node root, write a function to split the linked list into k cons…
74. 搜索二维矩阵
class Solution(object): def searchMatrix(self, matrix, target): """ :type matrix: List[List[int]] :type target…
LeetCode初级-存在重复
题目: 给定一个整数数组,判断是否存在重复元素。 如果任何值在数组中出现至少两次,函数返回 true。如果数组中每个元素都不相同,则返回 false。 示例 1: 输入: [1,2,3,1] 输出: true 示例 2:…
LeetCode算法题-Intersection of Two Arrays(Java实现-四种解法)
这是悦乐书的第207次更新,第219篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第75题(顺位题号是349)。给定两个数组,编写一个函数来计算它们的交集。例如: 输入:nums1 = [1…
Leetcode 207. Course Schedule
There are a total of n courses you have to take, labeled from 0 to n – 1. Some courses may have prerequi…
LeetCode543. Diameter of Binary Tree
Solution1 If we think about it, there may be three conditions for the largest diameter of a binary tree. The l…
算法练习--LeetCode--54. Spiral Matrix 100%
Spiral Matrix Medium Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix i…
[剑指offer] 和为S的连续正数序列
本文首发于我的个人博客:尾尾部落 题目描述 小明很喜欢数学,有一天他在做数学作业时,要求计算出9~16的和,他马上就写出了正确答案是100。但是他并不满足于此,他在想究竟有多少种连续的正数序列的和为100(至少包括两个数…
【leetcode】Edit Distance(编辑距离)(动态规划)
1、题目描述 Given two words word1 and word2, find the minimum number of operations required to convert word1 to wor…