随笔分类 -  leetcode

摘要:public class ComplexNumberMultiplicationSolution { public static String complexNumberMultiply(String a, String b) { int p1 = Integer.parseInt(a.split("\\+")[0]); int n1 = Integer.... 阅读全文
posted @ 2017-08-26 21:30 spyder13 阅读(148) 评论(0) 推荐(0)