摘要: 1 class Solution { 2 public int countOdds(int low, int high) { 3 if(low % 2 == 0 && high % 2 == 0) 4 return (high - low) / 2; 5 if(low % 2 != 0 && hig 阅读全文
posted @ 2020-07-29 23:13 小小码农-安 阅读(185) 评论(0) 推荐(0) 编辑