-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
sort-vowels-in-a-string.py
49 lines (45 loc) · 1.49 KB
/
sort-vowels-in-a-string.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Time: O(n)
# Space: O(1)
# counting sort
class Solution(object):
def sortVowels(self, s):
"""
:type s: str
:rtype: str
"""
def inplace_counting_sort(nums, reverse=False): # Time: O(n)
if not nums:
return
count = [0]*(max(nums)+1)
for num in nums:
count[num] += 1
for i in xrange(1, len(count)):
count[i] += count[i-1]
for i in reversed(xrange(len(nums))): # inplace but unstable sort
while nums[i] >= 0:
count[nums[i]] -= 1
j = count[nums[i]]
nums[i], nums[j] = nums[j], ~nums[i]
for i in xrange(len(nums)):
nums[i] = ~nums[i] # restore values
if reverse: # unstable sort
nums.reverse()
VOWELS = "AEIOUaeiou"
LOOKUP = {x:i for i, x in enumerate(VOWELS)}
vowels = [LOOKUP[x] for x in s if x in LOOKUP]
inplace_counting_sort(vowels, reverse=True)
return "".join(VOWELS[vowels.pop()] if x in LOOKUP else x for x in s)
# Time: O(nlogn)
# Space: O(1)
# sort
class Solution2(object):
def sortVowels(self, s):
"""
:type s: str
:rtype: str
"""
VOWELS = "AEIOUaeiou"
LOOKUP = set(VOWELS)
vowels = [x for x in s if x in LOOKUP]
vowels.sort(reverse=True)
return "".join(vowels.pop() if x in LOOKUP else x for x in s)