那可是露露
那可是露露
全部文章
LeetCod...
Data_Structures_and_Algorithm(8)
Hadoop_And_Spark(2)
Java(2)
Linux(2)
Python(8)
Scala(2)
TensorFlow(1)
ToolBox(5)
未归档(1)
沉舟侧畔千帆过(1)
面试(1)
归档
标签
去牛客网
登录
/
注册
那可是露露的博客
全部文章
/ LeetCode_And_SwordOffer
(共3篇)
LeetCode - 14: Longest Common Prefix
public String longestCommonPrefix(String[] strs) { if (strs.length == 0) return ""; String prefix = strs[0]; for (int i = 1; i &...
leetcode
java
2018-07-25
0
556
LeetCode - 07: Reverse Integer
class Solution { public int reverse(int x) { long result = 0; for(; x != 0; x /= 10) { result = result * 10 + x % 10; ...
2018-07-23
0
427
LeetCode -09: Palindrome Number
class Solution { public boolean isPalindrome(int x) { // if (x < 0) return false; // int tempX = x; // int reverse = 0; // while (tempX > 0...
2018-07-23
0
462