Skip to content

Commit 26d68a0

Browse files
authored
Add files via upload
1 parent 01679c6 commit 26d68a0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/Move all vowels.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
def move_vowels(inp):
2+
res=''
3+
vows=''
4+
for x in inp:
5+
if x in 'aeiou':
6+
vows+=x
7+
else:
8+
res+=x
9+
return res+vows
10+
pass

0 commit comments

Comments
 (0)