We are given two strings, A and B. A shift on A consists of taking string…
分类:LeetCode
LeetCode | Search in Rotated Sorted Array
题目: Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 …
LeetCode算法题-Design HashMap(Java实现)
这是悦乐书的第299次更新,第318篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第167题(顺位题号是706)。在不使用任何内置哈希表库的情况下设计HashMap。具体而言,你的设计应包括…
LeetCode算法题-Convert a Number to Hexadecimal(Java实现)
这是悦乐书的第219次更新,第231篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第86题(顺位题号是405)。给定一个整数,写一个算法将其转换为十六进制。对于负整数,使用二进制补码方法。例…
二刷681. Next Closest Time
Medium Given a time represented in the format “HH:MM”, form the next closest time by reusing the c…
二分查找类题目小结
问题的关键所在 两个中位数 区间选择 终止条件 两个中位数 下位中位数 上位中位数 区间的选择 开区间 闭区间 半开半闭区间 终止条件 low > high 有人说二分法复杂就是这里提到的几个部分的混淆造成的.
Day8. Power of Three(326)
问题描述 Given an integer, write a function to determine if it is a power of three. *思路1:* /** * @param {number} n…
[LeetCode] Fraction to Recurring Decimal 分数转循环小数
Given two integers representing the numerator and denominator of a fraction, return the fraction in str…
[LeetCode] Count The Repetitions 计数重复个数
Define S = [s,n] as the string S which consists of n connected strings s. For example, […
LeetCode之Linked List题目汇总
Add Two Numbers You are given two linked lists representing two non-negative numbers. The digits are stored in…
《与神对话》三-11 灵魂是身体的容器
11 灵魂是身体的容器 尼:可不可以请你告诉我一些关于灵魂的事? 神:当然可以。我将试着在你能领会的范围内解释给你听。但如果你有些地方觉得“说不通”的,不要受挫。请记得,这些讯息是透过一个特殊的过滤器传递来的…
First Missing Positive
问题: Given an unsorted integer array, find the first missing positive integer. For example, Given [1,2,0] retur…