使用map函数的Python程序查找最大1的行
给定2D数组,数组的元素为0和1。对所有行进行排序。我们必须找到最大为1的行。这里我们使用map()。map函数是用于函数编程的Python内置函数中最简单的一个。这些工具将函数应用于序列和其他可迭代项。
示例
Input Array is [[0, 1, 1, 1, 1],[0, 0, 1, 1, 1],[1, 1, 1, 1, 1],[0, 0, 0, 0, 1]] The maximum number of 1's = 2
算法
Step 1: sum of on each row of the matrix using map function. Step 2: it will return a list of sum of all one's in each row. Step 3: then print index of maximum sum in a list.
范例程式码
# Python program to find the row with maximum number of 1's
def maximumofones(n):
max1 = list(map(sum,n))
print ("MAXIMUM NUMBER OF 1's ::>",max1.index(max(max1)))
# Driver program
if __name__ == "__main__":
n = [[0, 1, 1, 1, 1],[0, 0, 1, 1, 1],[1, 1, 1, 1, 1],[0, 0, 0, 0, 1]]
maximumofones(n)输出结果
MAXIMUM NUMBER OF 1's ::> 2
热门推荐
10 哥哥中考加油祝福语简短
11 中班入学祝福语简短大全
12 送给员工美好祝福语简短
13 新老师祝福语 简短独特
14 打游戏通关祝福语简短
15 牛年新年祝福语大全简短
16 送给姐姐简短的祝福语
17 歌词祝福语高级文案简短
18 古风婚礼祝福语唯美简短