
数学
文章平均质量分 71
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 326. Power of Three(3的n次幂)
原题网址:https://leetcode.com/problems/power-of-three/Given an integer, write a function to determine if it is a power of three.Follow up:Could you do it without using any loop / recursion?方原创 2016-04-26 06:50:28 · 527 阅读 · 0 评论 -
LeetCode 149. Max Points on a Line(直线上的点)
原题网址:https://leetcode.com/problems/max-points-on-a-line/Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.方法一:逐点比较斜率。/** * Definition for a原创 2016-05-26 01:12:31 · 605 阅读 · 0 评论 -
LeetCode 60. Permutation Sequence(排列序列)
原题网址:https://leetcode.com/problems/permutation-sequence/The set [1,2,3,…,n] contains a total of n! unique permutations.By listing and labeling all of the permutations in order,We get the原创 2016-05-21 09:05:38 · 826 阅读 · 0 评论 -
LeetCode 365. Water and Jug Problem
原题网址:https://leetcode.com/problems/water-and-jug-problem/You are given two jugs with capacities x and y litres. There is an infinite amount of water supply available. You need to determine wheth原创 2016-06-25 05:28:10 · 1641 阅读 · 0 评论 -
LeetCode 66. Plus One(加1)
原题网址:https://leetcode.com/problems/plus-one/Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit i原创 2016-05-22 00:04:52 · 89 阅读 · 0 评论 -
LeetCode 67. Add Binary(二进制加)
原题网址:https://leetcode.com/problems/add-binary/Given two binary strings, return their sum (also a binary string).For example,a = "11"b = "1"Return "100".方法一:使用字符串来表示。public class So原创 2016-05-22 00:04:55 · 597 阅读 · 0 评论 -
LeetCode 69. Sqrt(x)(开平方根)
原题网址:https://leetcode.com/problems/sqrtx/Implement int sqrt(int x).Compute and return the square root of x.方法一:二分法。public class Solution { public int mySqrt(int x) { int i=0,原创 2016-05-22 00:05:17 · 2030 阅读 · 0 评论 -
LeetCode 335. Self Crossing(贪吃蛇)
原题网址:https://leetcode.com/problems/self-crossing/You are given an array x of n positive numbers. You start at point (0,0) and moves x[0] metres to the north, then x[1] metres to the west, x[原创 2016-04-30 01:55:51 · 843 阅读 · 0 评论 -
LeetCode 357. Count Numbers with Unique Digits(计算无重复数字)
原题网址:https://leetcode.com/problems/count-numbers-with-unique-digits/Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x n.Example:Given n = 2, return 91. (原创 2016-06-15 02:04:36 · 1416 阅读 · 0 评论 -
LeetCode 264. Ugly Number II(丑数字)
原题网址:https://leetcode.com/problems/ugly-number-ii/Write a program to find the n-th ugly number.Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 1, 2原创 2016-04-10 14:12:31 · 890 阅读 · 0 评论 -
LeetCode 372. Super Pow
原题网址:https://leetcode.com/problems/super-pow/Your task is to calculate ab mod 1337 where a is a positive integer and b is an extremely large positive integer given in the form of an array.Exam原创 2016-07-14 01:42:28 · 1051 阅读 · 0 评论 -
LeetCode 343. Integer Break(整数分拆)
原题网址:https://leetcode.com/problems/integer-break/Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximu原创 2016-04-30 12:00:37 · 1217 阅读 · 0 评论 -
LeetCode 330. Patching Array(数组补丁)
原题网址:https://leetcode.com/problems/patching-array/Given a sorted positive integer array nums and an integer n, add/patch elements to the array such that any number in range [1, n] inclusive ca原创 2016-04-28 06:24:51 · 592 阅读 · 0 评论 -
LeetCode 368. Largest Divisible Subset
原题网址:https://leetcode.com/problems/largest-divisible-subset/Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satisfie原创 2016-06-29 05:05:01 · 730 阅读 · 0 评论 -
LeetCode 313. Super Ugly Number(超级丑的数字)
原题网址:https://leetcode.com/problems/super-ugly-number/Write a program to find the nth super ugly number.Super ugly numbers are positive numbers whose all prime factors are in the given prime原创 2016-04-22 01:41:57 · 1551 阅读 · 0 评论 -
469. Convex Polygon
原题网址:https://leetcode.com/problems/convex-polygon/Given a list of points that form a polygon when joined sequentially, find if this polygon is convex (Convex polygon definition).Note:T原创 2016-12-05 03:36:00 · 1394 阅读 · 0 评论 -
LeetCode 29. Divide Two Integers(除法)
原题网址:https://leetcode.com/problems/divide-two-integers/Divide two integers without using multiplication, division and mod operator.If it is overflow, return MAX_INT.方法一:使用长整数处理溢出问题。publi原创 2016-05-20 10:35:39 · 522 阅读 · 0 评论 -
LeetCode 9. Palindrome Number(回文数字)
原题网址:https://leetcode.com/problems/palindrome-number/Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers原创 2016-05-19 04:37:11 · 533 阅读 · 0 评论 -
LeetCode 231. Power of Two(2的N次幂)
原题网址:https://leetcode.com/problems/power-of-two/Given an integer, write a function to determine if it is a power of two.思路:数字n是2的整数次幂,当且仅当n的二进制表示有且只有一个1。public class Solution { public boo原创 2016-04-05 11:37:05 · 648 阅读 · 0 评论 -
LeetCode 263. Ugly Number(丑数字)
原题网址:https://leetcode.com/problems/ugly-number/Write a program to check whether a given number is an ugly number.Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. F原创 2016-04-10 07:58:59 · 410 阅读 · 0 评论 -
LeetCode 277. Find the Celebrity(找名人)
原题网址:https://leetcode.com/problems/find-the-celebrity/Suppose you are at a party with n people (labeled from 0 to n - 1) and among them, there may exist one celebrity. The definition of a cele原创 2016-04-14 01:13:29 · 2448 阅读 · 0 评论 -
LeetCode 279. Perfect Squares(完美平方)
原题网址:https://leetcode.com/problems/perfect-squares/Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n.For example, g原创 2016-04-14 04:51:40 · 2271 阅读 · 0 评论 -
LeetCode 254. Factor Combinations(因式分解)
原题网址:https://leetcode.com/problems/factor-combinations/Numbers can be regarded as product of its factors. For example,8 = 2 x 2 x 2; = 2 x 4.Write a function that takes an integer n and原创 2016-04-09 02:18:30 · 2446 阅读 · 0 评论 -
LeetCode 292. Nim Game(取物游戏)
原题网址:https://leetcode.com/problems/nim-game/You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 ston原创 2016-04-16 05:58:50 · 563 阅读 · 0 评论 -
LeetCode 258. Add Digits(数位相加)
原题网址:https://leetcode.com/problems/add-digits/Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.For example:Given num = 38, the proces原创 2016-04-09 05:47:27 · 1602 阅读 · 0 评论 -
LeetCode 350. Intersection of Two Arrays II(数组交集)
原题网址:https://leetcode.com/problems/intersection-of-two-arrays-ii/Given two arrays, write a function to compute their intersection.Example:Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], retu原创 2016-05-25 01:35:00 · 1380 阅读 · 0 评论 -
LeetCode 172. Factorial Trailing Zeroes(0结尾)
原题网址:https://leetcode.com/problems/factorial-trailing-zeroes/Given an integer n, return the number of trailing zeroes in n!.Note: Your solution should be in logarithmic time complexity.方法:原创 2016-05-25 01:36:42 · 483 阅读 · 0 评论 -
LeetCode 168. Excel Sheet Column Title(EXCEL栏目)
原题网址:https://leetcode.com/problems/excel-sheet-column-title/Given a positive integer, return its corresponding column title as appear in an Excel sheet.For example: 1 -> A 2 -> B原创 2016-05-25 01:39:31 · 520 阅读 · 0 评论 -
LeetCode 166. Fraction to Recurring Decimal(循环小数)
原题网址:https://leetcode.com/problems/fraction-to-recurring-decimal/Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the frac原创 2016-05-25 01:39:57 · 1070 阅读 · 0 评论 -
LeetCode 2. Add Two Numbers(两数相加)
原题网址:https://leetcode.com/problems/add-two-numbers/You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a原创 2016-05-01 07:02:43 · 896 阅读 · 0 评论 -
LeetCode 311. Sparse Matrix Multiplication(稀疏矩阵相乘)
原题网址:https://leetcode.com/problems/sparse-matrix-multiplication/Given two sparse matrices A and B, return the result of AB.You may assume that A's column number is equal to B's row number.原创 2016-04-21 08:12:23 · 2920 阅读 · 0 评论 -
LeetCode 204. Count Primes(统计素数)
原题网址:https://leetcode.com/problems/count-primes/Description:Count the number of prime numbers less than a non-negative number, n.Credits:Special thanks to @mithmatt for adding this pro原创 2016-05-04 07:47:09 · 493 阅读 · 0 评论 -
LeetCode 319. Bulb Switcher(灯泡)
原题网址:https://leetcode.com/problems/bulb-switcher/There are n bulbs that are initially off. You first turn on all the bulbs. Then, you turn off every second bulb. On the third round, you toggle e原创 2016-04-24 01:14:06 · 452 阅读 · 0 评论 -
LeetCode 342. Power of Four(4的n次幂)
原题网址:342. Power of Four 342. Power of Four 342. Power of Four 342. Power of FourGiven an integer (signed 32 bits), write a function to check whether it is a power of 4.Example:Given num =原创 2016-04-30 11:08:01 · 471 阅读 · 0 评论 -
462. Minimum Moves to Equal Array Elements II
原题网址:https://leetcode.com/problems/minimum-moves-to-equal-array-elements-ii/Given a non-empty integer array, find the minimum number of moves required to make all array elements equal, where a m原创 2016-11-27 03:27:16 · 623 阅读 · 0 评论