最新 最热

Math - 50. Pow(x, n)

Implement pow(x, n), which calculates x raised to the power n (xn).

2020-09-23
1

DFS&BFS - 52. N-Queens II

The n-queens puzzle is the problem of placing n queens on an n_×_n chessboard such that no two queens attack each other.

2020-09-23
1

String - 12. Integer to Roman

Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M.

2020-09-23
0

String - 273. Integer to English Words

Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 231 - 1.

2020-09-23
0

Palindrome - 9. Palindrome Number

Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.

2020-09-23
1

String - 179. Largest Number

Given a list of non negative integers, arrange them such that they form the largest number.

2020-09-23
1

String - 38. Count and Say

The count-and-say sequence is the sequence of integers with the first five terms as following:

2020-09-23
1

String - 168. Excel Sheet Column Title

Given a positive integer, return its corresponding column title as appear in an Excel sheet.

2020-09-23
1

String - 13. Roman to Integer

Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M.

2020-09-23
0

Array - 295. Find Median from Data Stream

Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two middle va...

2020-09-23
1