代替
if smallestArr.contains(nil) {
把这个:
if smallestArr.contains{$0 == nil} {
其他方式:
if smallestArr.contains(where: {$0 == nil}) {