qingcheng奕  

2014年8月14日

摘要: https://oj.leetcode.com/problems/text-justification/细节题class Solution {public: vector fullJustify(vector &words, int L) { vector ans; ... 阅读全文
posted @ 2014-08-14 20:31 qingcheng奕 阅读(119) 评论(0) 推荐(0)
 
摘要: https://oj.leetcode.com/problems/interleaving-string/刚开始用递归做,但是超时了class Solution {public: bool flag; bool isInterleave(string s1, string s2,... 阅读全文
posted @ 2014-08-14 07:58 qingcheng奕 阅读(138) 评论(0) 推荐(0)