
leetcode
文章平均质量分 70
wangxuan_1992
这个作者很懒,什么都没留下…
展开
-
7. Reverse Integer
问题描述Given a 32-bit signed integer, reverse digits of an integer.Example 1:Input: 123Output: 321Example 2:Input: -123Output: -321Example 3:Input: 120Output: 21Note:Assume we a...原创 2020-03-29 11:41:38 · 186 阅读 · 0 评论 -
1. Two Sum
问题描述:Given an array of integers, returnindicesof the two numbers such that they add up to a specific target.You may assume that each input would haveexactlyone solution, and you may not use th...原创 2020-03-23 19:34:30 · 138 阅读 · 0 评论 -
2. Add Two Numbers
问题描述:You are given twonon-emptylinked lists representing two non-negative integers. The digits are stored inreverse orderand each of their nodes contain a single digit. Add the two numbers and r...原创 2020-03-15 12:13:25 · 168 阅读 · 0 评论