- 博客(3)
- 收藏
- 关注
原创 Palindrome Number
题目讲解 Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. 如果把一个数倒过来也是它本身,那么返回值为true. 思路: 先判断这个数x是否为负数,若是则返回false。若这个数为正数,那么先初始化一个为0的integer 取名为reverse,当x不为零的时候一直做一个循环,reverse=reverse*10+x%10,
2020-07-20 21:49:59 79
原创 Reverse Integer
Reverse Integer 这是我刷leetcode的第二天,同样也是一道简单难度的题,同样,我也用java和python分别做了一遍。 题目介绍 Given a 32-bit signed integer, reverse digits of an integer 把一个32bit长的数,反过来写一遍(32 bit 的数的取值范围是 [−231, 231 − 1]), 如果最后结果超过取值范围则返回值为0。 例如 123 反过来是321 JAVA class Solution { publi
2020-07-17 02:29:06 66
原创 TwoSum
Leetcode TwoSumTwoSum讲解题目JAVAPython TwoSum 这是我刷的第一道leetcode题,希望能坚持下去哦 XD 这个题目我用java和python分别做了一遍,从暴力破解到稍微聪明一点的做法都有。 讲解题目 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each in
2020-07-15 22:48:24 100
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人