2017年6月17日
摘要: 第一周 三角形个数。 public int triangleCount(int s[]) { // write your code here if (s == null || s.length == 0) return 0; int res = 0; Arrays.sort(s); for (int 阅读全文
posted @ 2017-06-17 15:06 wheleetcode 阅读(135) 评论(0) 推荐(0)