Permutation Sequence The set [1,2,3,…,n] contains a total of n! unique permutations. By listing and labeling a…
分类:LeetCode
LeetCode从零刷起 (2. Add Two Numbers)
2. Add Two Numbers You are given two non-empty linked lists representing two non-negative integers. The digits…
Leetcode PHP题解--D18 908. Smallest Range I
908. Smallest Range I 题目链接 908. Smallest Range I 题目分析 给定一个数组A和一个数字K,找到一个在-K和K之间的数字x并加到数组A中的每一个元素生成数组B,返回数组B中最大…
[LeetCode] Relative Ranks 相对排名
Given scores of N athletes, find their relative ranks and the people with the top three highe…
力扣(LeetCode)263
题目地址:https://leetcode-cn.com/probl…题目描述:编写一个程序判断给定的数是否为丑数。 丑数就是只包含质因数 2, 3, 5 的正整数。 示例 1: 输入: 6输出: true解…
LeetCode算法题-Detect Capital(Java实现)
这是悦乐书的第251次更新,第264篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第118题(顺位题号是520)。给定一个单词,你需要判断其中大写字母的使用是否正确。当下列情况之一成立时,我…
【LeetCode】- Merge Sorted Array
1、题目描述 Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The …
792. 匹配子序列的单词数
暴力算法果断超时 class Solution(object): def isSubsequence(self, s, t): """ :type s: str :type t: str :rtype: bool """…
LeetCode:合并K个排序链表
合并K个排序链表(困难) 题目叙述: 合并 k 个排序链表,返回合并后的排序链表。请分析和描述算法的复杂度。 示例: 输入: [ 1->4->5, 1->3->4, 2->6 ] 输出: 1…
LeetCode刷题之Merge Sorted Array
Problem Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: You…
[LeetCode By Go 33]530. Minimum Absolute Difference in BST
题目 Given a binary search tree with non-negative values, find the minimum absolute difference between values of…
[Leetcode] Binary Tree Paths 二叉树路径
Root To Leaf Binary Tree Paths Given a binary tree, return all root-to-leaf paths. 递归法 复杂度 时间 O(b^(h+1)-1) 空间 …