Lexicographically smallest K-length substring containing maximum number of vowels
Given string str containing only the lowercase English alphabet and an integer K, the task is to find a K length substring that contains the maximum number of vowels (i.e. 'a', 'e', 'i', 'o', 'u'). If there are multiple such substrings, return the substring which is lexicographically smallest. Examp