
加法
文章平均质量分 72
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 137. Single Number II(单个数字)
原题网址:https://leetcode.com/problems/single-number-ii/Given an array of integers, every element appears three times except for one. Find that single one.Note:Your algorithm should have a lin原创 2016-05-27 00:22:35 · 667 阅读 · 0 评论 -
LeetCode 306. Additive Number(加法的数字)
原题网址:https://leetcode.com/problems/additive-number/Additive number is a string whose digits can form additive sequence.A valid additive sequence should contain at least three numbers. Except原创 2016-04-20 01:13:12 · 901 阅读 · 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 评论