leetCode-4-Median of Two Sorted Arrays-Hard descrition There are two sorted arrays nums1 and nums2 of size m a…
分类:LeetCode
LeetCode算法题-Find Pivot Index(Java实现)
这是悦乐书的第304次更新,第323篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第172题(顺位题号是724)。给定一个整数nums数组,编写一个返回此数组的“pivot”索引的方法。我们…
Leetcode之2-两数相加(Add Two Numbers)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 给出两个 非空 的链表用来表示两个非负的整数。 其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储…
[LeetCode]Palindrome Number解析
链接:https://leetcode.com/problems/palindrome-number/#/description 难度:Easy 题目:9.Palindrome Number Determine whet…
28. Implement strStr()
28. Implement strStr() 题目 Implement strStr(). Return the index of the first occurrence of needle in haystack, …
[LeetCode] LFU Cache 最近最不常用页面置换缓存器
Design and implement a data structure for Least Frequently Used (LFU) cache. It should suppor…
Swift 移动零 - LeetCode
题目:移动零 描述: 给定一个数组 nums, 编写一个函数将所有 0 移动到它的末尾,同时保持非零元素的相对顺序。 例如, 定义 nums = [0, 1, 0, 3, 12],调用函数之后, nums 应为 [1, …
Leetcode PHP题解--D24 476. Number Complement
476. Number Complement 题目链接 476. Number Complement 题目分析 给定一个数字,将他转换成二进制后,将0和1对调过来,把对调后的二进制再转换成十进制。返回该数字即可。 思路 …
257. Binary Tree Paths
题目 https://leetcode.com/problems/binary-tree-paths/discuss/68279/C++-non-recursive-version-and-recursive-versi…
[LeetCode] Word Ladder II 词语阶梯之二,Word Ladder,Word Ladder
Given two words (beginWord and endWord), and a dictionary’s word list, find all shortes…
[LeetCode] Baseball Game 棒球游戏
You’re now a baseball game point recorder. Given a list of strings, each string can be one of the…
LeetCode | Permutations
题目: Given a collection of numbers, return all possible permutations. For example,[1,2,3] have the followi…