摘要: class Solution(object): def wordPattern(self, pattern, str): """ :type pattern: str :type str: str :rtype: bool """ tag=0 tagdic={} tagList=[] i=0 whi 阅读全文
posted @ 2016-10-26 11:30 火金队长 阅读(185) 评论(0) 推荐(0) 编辑
摘要: #-*- coding: UTF-8 -*-#先判断是否有重叠class Solution(object): def computeArea(self, A, B, C, D, E, F, G, H): """ :type A: int :type B: int :type C: int :type 阅读全文
posted @ 2016-10-26 11:00 火金队长 阅读(117) 评论(0) 推荐(0) 编辑