Medium
Maximum Beauty of an Array After Applying Operation — Python
Full explanation · Time O(nlogn) · Space O(1)
# Time: O(nlogn)
# Space: O(1)
# sort, two pointers, sliding window
class Solution(object):
def maximumBeauty(self, nums, k):
"""
:type nums: List[int]
:type k: int
:rtype: int
"""
nums.sort()
left = 0
for right in xrange(len(nums)):
if nums[right]-nums[left] > k*2:
left += 1
return right-left+1