摘要: 题目链接:https://leetcode-cn.com/problems/sum-of-square-numbers/submissions/ 代码: class Solution { public boolean judgeSquareSum(int c) { long a=0; long b= 阅读全文
posted @ 2019-11-12 09:51 饶一一 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 题目链接:https://leetcode-cn.com/problems/two-sum-ii-input-array-is-sorted/ 代码: class Solution { public int[] twoSum(int[] numbers, int target) { int i = 阅读全文
posted @ 2019-11-12 09:13 饶一一 阅读(98) 评论(0) 推荐(0) 编辑