摘要: public class Solution { public List<String> generateParenthesis(int n) { List<String> results = new ArrayList<>(); if (n == 0) { return results; } gen 阅读全文
posted @ 2017-06-30 15:57 yunyouhua 阅读(105) 评论(0) 推荐(0)