当前位置 : 主页 > 编程语言 > java >

【kotlin】kotlin小算法: 判断数字集合是否连续递增

来源:互联网 收集:自由互联 发布时间:2022-06-30
判断数字集合是否连续递增 ​​判断数字集合是否连续递增​​ fun judgeBookIllegal(list: ListInt): Boolean { //1,2,3 var firstIndex = list[0]//1 list.forEachIndexed { index, i - if (index 0 i != firstIndex + 1) { ret


判断数字集合是否连续递增

​​判断数字集合是否连续递增​​

fun judgeBookIllegal(list: List<Int>): Boolean {
//1,2,3
var firstIndex = list[0]//1
list.forEachIndexed { index, i ->
if (index > 0 && i != firstIndex + 1) {
return false
}
firstIndex = i
}
return true
}


网友评论