摘要: 题目描述:(链接)Given a string containing just the characters'('and')', find the length of the longest valid (well-formed) parentheses substring.For"(()", th... 阅读全文
posted @ 2015-11-17 17:54 skycore 阅读(143) 评论(0) 推荐(0) 编辑
摘要: matplotlib是python最著名的绘图库,它提供了一整套和MATLAB类似的绘图函数集。一. 快速绘图1. 使用pyplot模块绘图pyplot模块提供了快速绘制二维图表的API,例子: 1 # -*- coding: utf-8 -*- 2 """ 3 绘制简单的曲线。 4 """ 5 i... 阅读全文
posted @ 2015-11-17 16:45 skycore 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 题目描述:(链接)Given an absolute path for a file (Unix-style), simplify it.For example,path="/home/", =>"/home"path="/a/./b/../../c/", =>"/c"click to show c... 阅读全文
posted @ 2015-11-17 14:43 skycore 阅读(149) 评论(0) 推荐(0) 编辑