2020年9月11日
摘要: package my; public class RomanNumberSolution { public String intToRoman(int num){ String[] thousands = {"", "M", "MM", "MMM"}; String[] hundreds = {"" 阅读全文
posted @ 2020-09-11 22:21 凌晨三点半的飞机 阅读(134) 评论(0) 推荐(0) 编辑
摘要: package my; public class MaxAreaSolution { public int maxArea(int[] height){ if(height.length <1){ return 0; } int max = 0; int current =0; for(int i= 阅读全文
posted @ 2020-09-11 02:53 凌晨三点半的飞机 阅读(159) 评论(0) 推荐(0) 编辑