Leetcode

Leetcode 228. Summary Ranges

2021-02-03  本文已影响0人  SnailTyan

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Summary Ranges

2. Solution

class Solution:
    def summaryRanges(self, nums):
        result = []
        length = len(nums)

        i = 0
        while i < length:
            if i == length - 1 or nums[i] + 1 != nums[i + 1]:
                result.append(str(nums[i]))
                i += 1
                continue

            start = nums[i]
            while i + 1 < length and nums[i] + 1 == nums[i + 1]:
                i += 1
            end = nums[i]
            result.append(str(start) + '->' + str(end))
            i += 1

        return result
class Solution:
    def summaryRanges(self, nums):
        result = []

        for num in nums:
            if num - 1 not in nums and num + 1 not in nums:
                result.append(str(num))
                continue

            if num - 1 not in nums:
                start = num

            if num + 1 not in nums:
                end = num
                result.append(str(start) + '->' + str(end))

        return result

Reference

  1. https://leetcode.com/problems/summary-ranges/
上一篇下一篇

猜你喜欢

热点阅读