2015年5月18日
摘要: public class Solution { public void merge(int[] nums1, int m, int[] nums2, int n) { int i = m - 1; int j = n - 1; int k = m + ... 阅读全文
posted @ 2015-05-18 14:36 kikiUr 阅读(69) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public String convertToTitle(int n) { if(n == 0) { return ""; } return convertToTitle((n - ... 阅读全文
posted @ 2015-05-18 14:35 kikiUr 阅读(94) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public ArrayList> generate(int numRows) { ArrayList> res = new ArrayList>(); if (numRows == 0) { r... 阅读全文
posted @ 2015-05-18 07:09 kikiUr 阅读(66) 评论(0) 推荐(0) 编辑