摘要: 描述Write a function to find the longest common prefix string amongst an array of strings.分析从位置 0 开始,对每一个位置比较所有字符串,直到遇到一个不匹配。 代码 阅读全文
posted @ 2018-06-16 16:15 昵称真难想 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 描述Implement wildcard paern matching with support for '?' and '*'.'?' Matches any single character. '*' Matches any sequence of characters (including 阅读全文
posted @ 2018-06-16 00:33 昵称真难想 阅读(187) 评论(0) 推荐(0) 编辑