摘要: 写在前面,参考力扣官网的画解算法。。真的太清晰明了了 #一、java代码 /* * @lc app=leetcode.cn id=15 lang=java * * [15] 三数之和 */ // @lc code=start class Solution { public List<List<Int 阅读全文
posted @ 2020-09-01 17:26 阿狸狸爱吃饭 阅读(60) 评论(0) 推荐(0) 编辑
摘要: #一、java代码 /* * @lc app=leetcode.cn id=14 lang=java * * [14] 最长公共前缀 */ // @lc code=start class Solution { public String longestCommonPrefix(String[] st 阅读全文
posted @ 2020-09-01 16:01 阿狸狸爱吃饭 阅读(100) 评论(0) 推荐(0) 编辑
摘要: #一、java代码 /* * @lc app=leetcode.cn id=13 lang=java * * [13] 罗马数字转整数 */ // @lc code=start class Solution { public int romanToInt(String s) { int sum=0; 阅读全文
posted @ 2020-09-01 15:00 阿狸狸爱吃饭 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 写在前面,参考的是力扣官网的解答。 #一、java算法 /* * @lc app=leetcode.cn id=12 lang=java * * [12] 整数转罗马数字 */ // @lc code=start class Solution { public String intToRoman(i 阅读全文
posted @ 2020-09-01 11:29 阿狸狸爱吃饭 阅读(86) 评论(0) 推荐(0) 编辑