Skip to content

Latest commit

 

History

History
67 lines (27 loc) · 885 Bytes

File metadata and controls

67 lines (27 loc) · 885 Bytes

Description

Write a function that takes a string as input and reverse only the vowels of a string.

Example 1:

Input: "hello"

Output: "holle"

Example 2:

Input: "leetcode"

Output: "leotcede"

Note:

The vowels does not include the letter "y".

 

Solutions

Python3

Java

...