摘要: /// /// 判断数字集合是否是连续的 /// /// public bool IsContinuous(List numList) { numList.Sort((x, y) => -x.CompareTo(y));//降序 bool result = false; for (int i = 0; i < numList.Count(); i++) {... 阅读全文
posted @ 2019-05-28 12:01 陈哲Gilbert 阅读(3210) 评论(0) 推荐(0) 编辑