摘要: Python-dict 和 setdictPython内置了字典:dict的支持,dict全称dictionary,在其他语言中也称为map,使用键-值(key-value)存储 定义格式:>>>dic = {'Miachel':95,'Bob':75,'Tracy':85}>>>d... 阅读全文
posted @ 2017-11-18 16:58 link98 阅读(161) 评论(0) 推荐(0)
摘要: Python学习笔记-1ListPython内置的一种数据类型是列表:list。list是一种有序的集合,可以随时添加和删除其中的元素。 定义格式:classmates = ['ichel','Bob','Tom']可以用 len() 来获取 list 的长度>>>len(class... 阅读全文
posted @ 2017-11-18 16:06 link98 阅读(125) 评论(0) 推荐(0)
摘要: 563. Binary Tree TiltGiven a binary tree, return the tilt of the whole tree.The tilt of a tree node is defined as the absolute difference between the ... 阅读全文
posted @ 2017-11-18 10:53 link98 阅读(131) 评论(0) 推荐(0)