228-Summary-Ranges
Sat 17 May 2025
https://leetcode.com/problems/summary-ranges
import pyutil as pyu
pyu.get_local_pyinfo()
print(pyu.ps2("python-dotenv"))
from typing import List
class Solution:
def summaryRanges(self, nums: List[int]) -> List[str]:
ans = []
i = 0
while i < len(nums):
begin = nums[i]
while i < len(nums) - 1 and nums[i] == nums[i + 1] - 1:
i += 1
end = nums[i]
if begin == end:
ans.append(str(begin))
else:
ans.append(str(begin) + "->" + str(end))
i += 1
return ans
new Solution().summaryRanges()
Score: 5
Category: leetcode