两层for循环的双指针问题 导致的超时
可以将for循环变化成为 while循环eg: 给定一个非负整数c,你要判断是否存在两个整数a和b,使得a2+ b2= c。 力扣:633 平方数之和class Solution { public boolean judgeSquareSum(int c) { // //会超时 // long temp = (long)Math.sqrt(c); // for(int i = 0;i<=temp;i++){ ...