2014年8月19日

Wildcard Matching

摘要: Implement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches any sequence of characters (including the e... 阅读全文

posted @ 2014-08-19 13:29 Step-BY-Step 阅读(207) 评论(0) 推荐(0) 编辑

Subclasses

摘要: Given a collection of numbers, return all possible subclasses. 1 public class Solution { 2 public List> permute(int[] num) { 3 ArrayList... 阅读全文

posted @ 2014-08-19 09:05 Step-BY-Step 阅读(221) 评论(0) 推荐(0) 编辑

导航