-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring.py
137 lines (93 loc) · 2.89 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
def reverse(string):
if not string: return ""
return " ".join(string.split()[::-1])
def reverse_2(string):
if not string: return ""
array = string.split()
start = 0
end = len(array) - 1
while end > start:
array[start], array[end] = array[end], array[start]
start += 1
end -= 1
return " ".join(array)
def reverse_3(string):
def reverse(string):
start = 0
end = len(string)-1
string = list(string)
while end > start:
string[start], string[end] = string[end], string[start]
start += 1
end -= 1
return "".join(string)
string = list(reverse(string))
i = 0
reversed = ""
for j in range(len(string)):
if string[j] == ' ':
if not reversed:
reversed = reverse(string[i:j])
else:
reversed = reversed + " " + reverse(string[i:j])
i = j + 1
return reversed + " " + reverse(string[i:])
def reverse_vowels(string, vowels):
start = 0
end = len(string) - 1
string = list(string)
while end > start:
if string[start] in vowels and string[end] in vowels:
string[start],string[end] = string[end], string[start]
start += 1
end -= 1
if string[start] not in vowels:
start += 1
if string[end] not in vowels:
end -= 1
return "".join(string)
print((reverse("Hello World")))
print((reverse_2("Hello from Mars")))
print((reverse_3("Hello world everyone")))
vowels = ["a", "e", "i", "o", "u"]
print((reverse_vowels("abhishek", vowels)))
def compress(string):
if not string: return None
# initialize
compressed = string[0]
count = 1
for i in range(1, len(string)):
if string[i] == string[i-1]:
count += 1
else:
# append count
compressed += str(count)
# append next char
compressed += string[i]
# reset count
count = 1
else:
# last char count value
compressed += str(count)
return min(compressed, string, key=len)
# string = "aabbbccc"
# string = "abb"
string = "abccccccccccccccccccccccccccccccdefg"
print((compress(string)))
def permute(string):
if not string: return None
if len(string) == 1: return string
k = len(string) - 1
prefix, last_char = string[:k], string[k:]
def rec_permute(string, char):
if not string: return [char]
j = len(string) - 1
sub = rec_permute(string[:j], string[j:])
premutations = [str[i:] + char + str[:i]
for str in sub
for i in range(len(str)+1)]
return premutations
return rec_permute(prefix, last_char)
input = 'ABC'
print(("Total premutations =>", len(permute(input))))
print((permute(input)))