2021年4月30日
摘要: package leetcode; public class demo_43 { public String multiply(String num1, String num2) { String s1=""; String s=""; if(num2.equals("0")||num1.equal 阅读全文
posted @ 2021-04-30 22:31 一仟零一夜丶 阅读(62) 评论(0) 推荐(0)
摘要: 1 package leetcode; 2 3 public class demo_11 { 4 public int maxArea(int[] height) { 5 int left=0; 6 int right=height.length-1; 7 //保存当前最大的面积 8 int max 阅读全文
posted @ 2021-04-30 15:47 一仟零一夜丶 阅读(45) 评论(0) 推荐(0)