目前分類:Leetcode (17)
- Nov 10 Fri 2017 16:54
172. Factorial Trailing Zeros
- Nov 07 Tue 2017 21:59
657. Judge Route Circle
Initially, there is a Robot at position (0, 0). Given a sequence of its moves, judge if this robot makes a circle, which means it moves back to the original place.
The move sequence is represented by a string. And each move is represent by a character. The valid robot moves are R (Right). L
(Left), U
(Up) and D
(down). The output should be true or false representing whether the robot makes a circle.
- Oct 16 Mon 2017 22:41
268. Missing Number
題目
Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array.
- Oct 16 Mon 2017 22:07
628. Maximum Product of Three Numbers
題目
Given an integer array, find three numbers whose product is maximum and output the maximum product.
- Sep 30 Sat 2017 10:19
216. Combination Sum III
題目
Given an array of intergers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.
- Sep 27 Wed 2017 15:42
258. Add Digits
題目
Given a non-negative integer num
, repeatedly add all its digits until the result has only one digit.
- Sep 27 Wed 2017 13:55
551. Student Attendance Record I
題目
You are given a string representing an attendance record for a student. The record only contains the following three characters:
- Sep 27 Wed 2017 10:22
169. Majority Element
題目
Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋
times.
- May 16 Tue 2017 13:30
13. Roman to Integer
- May 14 Sun 2017 13:41
144. Binary Tree Preorder Traversal
- Apr 22 Sat 2017 11:07
383. Ransom Note
問題
Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the ransom note can be constructed from the magines; otherwise, it will return false.
- Apr 20 Thu 2017 16:46
520. Detect Capital
- Apr 20 Thu 2017 15:57
557. Reverse Words in a String III
題目
Given a string, you need to reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
- Apr 15 Sat 2017 10:52
226. Invert Binary Tree
- Apr 15 Sat 2017 10:12
100. Same Tree
- Apr 11 Tue 2017 10:26
94. Binary Tree Inorder Traversal
- Apr 09 Sun 2017 19:08
283. Move Zeroes
問題
Given an array `nums`, write a function to move all `0`'s to the end of it while maintaining the relative order of the non-zero elements.