到达终点数字【简单】 题目描述 在一根无限长的数轴上,你站在0的位置。终点在target的位置。 每次你可以选择向左或向右移动。第 n 次移动(从 1 开始),可以走 n 步。 返回到达终点需要的最小移动次数。 示例 1…
标签:LeetCode
788. Rotated Digits
题目地址:https://leetcode.com/problems/rotated-digits/description/ 题目大意: 比较绕人,就一个一数字,没个位数上的数字都旋转180度之后,还是一个数字,但是不能…
LeetCode Fizz Buzz
Write a program that outputs the string representation of numbers from 1 to n. But for multiples of three it s…
二叉树的后序遍历
题目: 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果。如果是则输出Yes,否则输出No。假设输入的数组的任意两个数字都互不相同。 方法分析: BST的后序序列的合法序列是,对于一个序列S,最后一个元素是…
LeetCode : 字符串的排列
字符串的排列 题目叙述: 给定两个字符串 s1 和 s2,写一个函数来判断 s2 是否包含 s1 的排列。 换句话说,第一个字符串的排列之一是第二个字符串的子串。 示例: 示例1: 输入: s1 = “ab&…
LeetCode115 Distinct Subsequences 动态规划
发现LeetCode上的题,一旦第一时间没有头绪,那么它很有可能是一道动态规则题。 附上自己AC的代码:https://github.com/JiangJiafu/LeetCode/blob/master/src/Sol…
[LintCode][System Design] Consistent Hashing II
Problem More in LeetCode Discussion 在 Consistent Hashing I 中我们介绍了一个比较简单的一致性哈希算法,这个简单的版本有两个缺陷: 增加一台机器之后,数据全部从其中…
415. Add Strings
/* 415. Add Strings Total Accepted: 4917 Total Submissions: 11391 Difficulty: Easy Contributors: Admin Given t…
Day 21.Unique Morse Code Words(804)
问题描述 International Morse Code defines a standard encoding where each letter is mapped to a series of dots and …
LeetCode 74. Search a 2D Matrix
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following prope…
[LintCode][System Design] Tiny Url II
Problem As a follow up for Tiny URL, we are going to support custom tiny url, so that user can create their ow…
Leetcode 156. Binary Tree Upside Down
Given a binary tree where all the right nodes are either leaf nodes with a sibling (a left node that shares th…