摘要: 排序: class Solution { public boolean isStraight(int[] nums) { Arrays.sort(nums); int zero = 0; int needZero = 0; if(nums[0] == 0) zero++; for(int i=1;i 阅读全文
posted @ 2020-07-25 16:13 浅滩浅 阅读(229) 评论(0) 推荐(0)