Leetcode 9-12

Posted kedongh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 9-12相关的知识,希望对你有一定的参考价值。

No. 9 Palindrome Number (简单,PASS)

技术图片


No. 10 Regular Expression Matching (HARD)

https://leetcode.com/problems/regular-expression-matching/discuss/5723/My-DP-approach-in-Python-with-comments-and-unittest


No. 11 Container With Most Water

技术图片

注意点:本题目并不是求已给出的height中符合要求的sum最大,而是给出最大能盛水的量。

Solution: Two Pointers

Note: The most water = width * min(left, right), where width = j - i, i and j are the indexes of two sides.


No. 12 Integer to Roman

将整数转换成罗马数字(Roman),字符表对应如下:

技术图片

其中,有六种特殊情况,如下:

技术图片

Solution:不断整除,分母分别为[1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1]。

以上是关于Leetcode 9-12的主要内容,如果未能解决你的问题,请参考以下文章

图解LeetCode #704 二分查找

leetcode 704. 二分查找

leetcode 二分查找(704)

leetcode:题目 :二分查找

Leetcode No.704 二分查找

Leetcode No.704 二分查找