240 发简信
IP属地:北京
  • Go学习记录

    2020-02-241.Go语言基础 2020-02-26程序实体那些事1、2、3

  • Roman to Integer

    [原题链接-E] (https://leetcode.com/problems/roman--to-integer/) Example罗马转数...

  • Integer to Roman

    [原题链接-M] (https://leetcode.com/problems/integer-to-roman/description/) ...

  • Resize,w 360,h 240
    Container With Most Water

    原题链接-M Example最多装水问题 时间复杂度: O(N)- 空间复杂度: O(1)

  • 回文数

    原题链接-E Example回文数,121 时间复杂度: O(1)- 空间复杂度: O(1)

  • String to Integer (atoi)

    原题链接-M ExampleExample 1: Input: "42"Output: 42Example 2: Input: " -42"...

  • Reverse Integer

    原题链接-E ExampleExample 1: Input: 123Output: 321Example 2: Input: -123Outp...

  • ZigZag Conversion

    原题链接-M ExampleInput: s = "PAYPALISHIRING", numRows = 4Output: "PINALSIGY...

  • Longest Substring Without Repeating Characters

    原题链接-M ExampleInput: "abcabcbb"Output: 3Explanation: The answer is "abc"...