摘要: 一、装饰器的形成过程 import time def func1(): print("in fun1") time.sleep(8) def timer(func): def inner(): start = time.time() func() print("执行时间", time.time() 阅读全文
posted @ 2019-05-08 10:55 hoo_o 阅读(587) 评论(0) 推荐(0) 编辑
摘要: # Leetcode 263 丑数### 题目描述 编写一个程序判断给定的数是否为丑数。 丑数就是只包含质因数 `2, 3, 5` 的**正整数**。 **示例1:** 输入: 6 输出: true 解释: 6 = 2 × 3 **示例2:** 输入: 8 输出: true 解释: 8 = 2 × 阅读全文
posted @ 2019-05-08 10:01 hoo_o 阅读(886) 评论(0) 推荐(0) 编辑