240 发简信
IP属地:江苏
  • Leetcode258---Add Digits

    Given a non-negative integer num, repeatedly add all its digits until the result has on...

  • leetcode8---String to Integer (atoi)

    Implement atoi to convert a string to an integer.Hint: Carefully consider all possible ...

  • leetcode7---Reverse Integer

    Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -3...

  • leetcode6---ZigZag Conversion

    The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows li...

  • leetcode5---Longest Palindromic Substring

    Given a string s, find the longest palindromic substring in s. You may assume that the ...

  • leetcode4---Median of Two Sorted Arrays

    There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the medi...

  • leetcode3---Longest Substring Without Repeating Characters

    Given a string, find the length of the longest substring without repeating characters. ...

  • leetcode2---Add Two Numbers

    You are given two non-empty linked lists representing two non-negative integers. The di...

  • leetcode1---Two Sum

    Given an array of integers, return indices of the two numbers such that they add up to ...