Find and Replace Pattern

2019-04-28
阅读 2 分钟
1.2k
You have a list of words and a pattern, and you want to know which words in words matches the pattern.

11.leetcode Range Sum of BST

2019-04-16
阅读 1 分钟
1.7k
The binary search tree is guaranteed to have unique values. #### 1. 例子

10.leetcode Delete Columns to Make Sorted

2019-04-14
阅读 2 分钟
1.7k
We are given an array A of N lowercase letter strings, all of the same length.

9 .leetcode Peak Index in a Mountain Array

2019-04-14
阅读 2 分钟
1.5k
A.length >= 3There exists some 0 < i < A.length - 1 such that A[0] < A[1] < ... A[i-1] < A[i] > A[i+1] > ... > A[A.length - 1]Given an array that is definitely a mountain, return any i such that A[0] < A[1] < ... A[i-1] < A[i] > A[i+1] > ... > A[A.leng...

8.leetcode Self Dividing Numbers

2019-04-13
阅读 2 分钟
1.2k
A self-dividing number is a number that is divisible by every digit it contains.

leetcode7:汉明距离

2019-04-04
阅读 1 分钟
1.5k
The Hamming distance between two integers is the number of positions at which the corresponding bits are different.

6leetcode機器移動

2019-04-03
阅读 2 分钟
816
There is a robot starting at position (0, 0), the origin, on a 2D plane. Given a sequence of its moves, judge if this robot ends up at (0, 0) after it completes its moves.

leetcode5: 矩阵反转

2019-03-29
阅读 2 分钟
2.4k
1.题目:Given a binary matrix A, we want to flip the image horizontally, then invert it, and return the resulting image.

4. leetcode 数组平方和的排序

2019-03-27
阅读 1 分钟
2.1k
1. 题目Given an array of integers A sorted in non-decreasing order, return an array of the squares of each number, also in sorted non-decreasing order.示例一:

3。leetcode在2N的数组中找出N的冲服元素

2019-03-26
阅读 1 分钟
1.2k
1.题目:In a array A of size 2N, there are N+1 unique elements, and exactly one of these elements is repeated N times.

2.leetcode唯一的摩斯密码

2019-03-26
阅读 2 分钟
1.4k
1.题目International Morse Code defines a standard encoding where each letter is mapped to a series of dots and dashes, as follows: "a" maps to ".-", "b" maps to "-...", "c" maps to "-.-.", and so on.

1.过滤邮箱地址

2019-03-25
阅读 3 分钟
1.6k
1.题目Every email consists of a local name and a domain name, separated by the @ sign.