Question: 
Write a python function to accept the strings which contains all vowels.


Model's Code:
def check(string):
    vowels = set('aeiouAEIOU')
    if vowels.issubset(set(string)):
        return 'accepted'
    return 'not accepted'



Sample Correct Code:
def check(string): 
  if len(set(string).intersection("AEIOUaeiou"))>=5: 
    return ('accepted') 
  else: 
    return ("not accepted") 


Asserts:
assert check("SEEquoiaL") == 'accepted'
assert check('program') == "not accepted"
assert check('fine') == "not accepted"


Tests:
Test 1 of 3: FAIL: AssertionError()

Test 967 of 974: 740/967 (76.5253360910031%): failed