240 发简信
IP属地:弗吉尼亚州
  • Amazon OA

    2SumUniquePairs SubTree Search 2D Spiral Matrix Merge 2 sorted Linked Li...

  • 14. Longest Common Prefix

    Example 1: Input: ["flower","flow","flight"]Output: "fl"Example 2: Input...

  • 13. Roman to Integer

    Example 1:Input: "III"Output: 3 Example 2:Input: "IV"Output: 4 Example 3...

  • 9. Palindrome Number

    Example 1:Input: 121Output: true Example 2:Input: -121Output: falseExpla...

  • 7. Reverse Integer

    Example 1:Input: 123Output: 321 Example 2:Input: -123Output: -321 Exampl...

  • 2. Add Two Numbers

    Example: Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)Output: 7 -> 0 -> 8Explanat...

  • 1. Two Sum

    Example:Given nums = [2, 7, 11, 15], target = 9,Because nums[0] + nums[1...