Post History
Vyxal, 2 bytes ~A Try it Online! Takes input as a string, outputs a list of vowels. Explained ~A ~ # Keep only letters from the input where A # the letter is a vowel
Answer
#2: Post edited
# [Vyxal](https://github.com/Vyxal/Vyxal) `s`, 2 bytes- ```
- ~A
- ```
[Try it Online!](https://vyxal.pythonanywhere.com/#WyJzIiwiIiwifkEiLCIiLCJhTHRFck5hVGUiXQ==)The `s` flag is not needed if outputting a list of characters is allowed.- ## Explained
- ```
- ~A
- ~ # Keep only letters from the input where
- A # the letter is a vowel
- ```
- # [Vyxal](https://github.com/Vyxal/Vyxal), 2 bytes
- ```
- ~A
- ```
- [Try it Online!](https://vyxal.pythonanywhere.com/#WyIiLCIiLCJ+QSIsIiIsImFMdEVyTmFUZSJd)
- Takes input as a string, outputs a list of vowels.
- ## Explained
- ```
- ~A
- ~ # Keep only letters from the input where
- A # the letter is a vowel
- ```
#1: Initial revision
# [Vyxal](https://github.com/Vyxal/Vyxal) `s`, 2 bytes ``` ~A ``` [Try it Online!](https://vyxal.pythonanywhere.com/#WyJzIiwiIiwifkEiLCIiLCJhTHRFck5hVGUiXQ==) The `s` flag is not needed if outputting a list of characters is allowed. ## Explained ``` ~A ~ # Keep only letters from the input where A # the letter is a vowel ```