摘要: Python3 示例: def findSmallest(arr): smallest = arr[0] smallest_index = 0 for i in range(1, len(arr)): if arr[i] < smallest: smallest = arr[i] smallest_ 阅读全文
posted @ 2021-10-18 12:04 龙虚度 阅读(28) 评论(0) 推荐(0) 编辑