摘要:
很简单。直接打表。 emm但是似乎大部分人认真找规律写的代码... 阅读全文
摘要:
暴力O(n^2),但是可以通过一些“剪枝”使其达到O(n),但是证明是一个问题。 We starts with the widest container, l = 0 and r = n - 1. Let's say the left one is shorter: h[l] < h[r]. The 阅读全文
摘要:
很简单。 阅读全文
摘要:
很简单。 阅读全文
摘要:
很简单。不要忽略特殊情况x=INT_MIN处理(the 32-bit signed integer range: [−2^31, 2^31 − 1])。 阅读全文
摘要:
很简单,不要忽略numRows=1的特殊情况处理。 approach 1:按结果顺序直接计算每个位置的下标 approach 2:依次原字符串顺序依次读取每个位置,每行一个字符串,最后每行相加。 阅读全文