最大连续1的个数 、 495. 提莫攻击 、414. 第三大的数 、628. 三个数的最大乘积、54. 螺旋矩阵 、 59. 螺旋矩阵 II 、498. 对角线遍历
485.最大连续1的个数思路:设置两个参数,count统计当前连续1的个数,maxcount统计连续最长的个数。如果遍历nums遇到了0,就maxcount=max(count,maxcount)。代码:classSolution{publicintfindMaxConsecutiveOnes(int[]nums){intcount=0;intmaxcount=0;for(inti=0;i=exp