摘要:
https://oj.leetcode.com/problems/text-justification/细节题class Solution {public: vector fullJustify(vector &words, int L) { vector ans; ...
阅读全文
摘要:
https://oj.leetcode.com/problems/interleaving-string/刚开始用递归做,但是超时了class Solution {public: bool flag; bool isInterleave(string s1, string s2,...
阅读全文