问题背景
给定一个非负索引 r o w I n d e x rowIndex rowIndex,返回「杨辉三角」的第 r o w I n d e x rowIndex rowIndex 行。 在「杨辉三角」中,每个数是它左上方和右上方的数的和。
数据约束 0 ≤ r o w I n d e x ≤ 33 0 \le rowIndex \le 33 …
1)?.操作符
//执行逻辑
if (person ! null) {person.doSomething()
}
//表达式
person?.doSomething()
2)?:操作符
//执行逻辑
val c if (a ! null) {a
} else {b
}
//表达式
val c a ?: b
3)!!表达式
var message: String? &qu…