标签:return tput code value ges values lis self 接受
any(iterable)->bool
当迭代器中有一个是Ture,则返回Ture;若interable=NUll,则返回False.
>>> any([1,0])
True
>>> any([0,0])
False
>>> any([])
False
>>> any([1,0,0])
True
应用:在一颗二叉树中,找出每一层中的最大元素(leetcode515)。
Input:
1
/ 3 2
/ \ \
5 3 9
Output: [1, 3,9]
#类节点的定义
class node(self) : def __init__(self,data) self.val=data self.right=NULL self.left=NULL
class Solution(object): def largestValues(self, root): maxlist=[] row=[root] while any(row): maxlist.append(max[node.val for node in row]) row=[kid for node in row for kid in node.left,node.right) if kid] return maxlist
all(iterable)->bool
迭代器中每个元素必须都为真时,返回Ture,否则返回False.
>>> all([1,0])
False
>>> all(["e",1])
True
标签:return tput code value ges values lis self 接受
原文地址:http://www.cnblogs.com/whb-20160329/p/6657828.html