那可是露露
那可是露露
全部文章
分类
Data_Structures_and_Algorithm(8)
Hadoop_And_Spark(2)
Java(2)
LeetCode_And_SwordOffer(3)
Linux(2)
Python(8)
Scala(2)
TensorFlow(1)
ToolBox(5)
未归档(1)
沉舟侧畔千帆过(1)
面试(1)
归档
标签
去牛客网
登录
/
注册
那可是露露的博客
全部文章
(共2篇)
LeetCode -13: Roman to Integer
class Solution { public int romanToInt(String s) { Map<Character, Integer> map = new HashMap<>(); map.put('I', 1); ...
leetcode
java
2018-07-23
0
501
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