摘要: 这道题怎么说呢,真的很卧槽。分分钟想把出题人打一顿,题目根本没说明白,字符串中会包含 '0' 。状态转移五分钟,边界处理两小时。 DP 解法: public final int numDecodings(String s) { if (s == null || s.length() == 0 || 阅读全文
posted @ 2020-07-14 23:22 牛有肉 阅读(178) 评论(0) 推荐(0) 编辑