•  
      tasks #45153 Accept the strings which contains all vowels
    #45153
    Ritish Singh (ritish31)
    2022-08-16 08:26
    2022-08-16 08:26
    Details
    Accept the strings which contains all vowels
    We will create a set of vowels using set() method. Since both uppercase and lowercase vowels have to be considered, we will convert the string to lower case. Then we will iterate over the string and if any character is a vowel, we will delete it from the vowel set using remove().
    In the end, we will check the length of the vowel set. If the length is 0 then the string will be accepted else the string will not be accepted. The set() function will convert any of the iterable to the sequence of iterable elements with distinct elements, commonly called Set.
    5 - Medium
    State of Progress
    2022-05-13
    100
    2022-05-15
    Ritish Singh (ritish31)
    Rakesh Kumar Verma (rakesh.verma)
    2022-05-14
    Closed
    Attachments
    References
    References list is empty