Submitted by: Mohammad Sajid Anwar
You are given a string.
Write a script to return the all possible vowel substrings in the given string. A vowel substring is a substring that only consists of vowels and has all five vowels present in it.
Input: $str = "aeiou"
Output: ("aeiou")
Input: $str = "aaeeeiioouu"
Output: ("aeeeiioou")
Input: $str = "aeiouuaxaeiou"
Output: ("aeiou", "aeiou", "eiouua")
Input: $str = "uaeiou"
Output: ("aeiou", "uaeio")
Input: $str = "aeioaeioa"
Output: ()
Submitted by: Mohammad Sajid Anwar
You are given a string containing 0-9 digits only.
Write a script to return the largest number with all digits the same in the given string.
Input: $str = "6777133339"
Output: 3333
Input: $str = "1200034"
Output: 4
Input: $str = "44221155"
Output: 55
None found.
Input: $str = "88888"
Output: 88888
Input: $str = "11122233"
Output: 222
Last date to submit the solution 23:59 (UK Time) Sunday 17th May 2026.