pangrams hackerrank solution in python

Solutions on MaxInterview for pangrams hackerrank solution in python by the best coders in the world

showing results for - "pangrams hackerrank solution in python"
Miller
28 May 2018
1ascii_array = []
2def pangram(string):
3    lower_string = string.lower()
4    for i in range(len(lower_string)):
5        ascii_array.append(ord(lower_string[i]))
6    for i in range(97, 123):
7        if i not in ascii_array:
8            return 'Not Pangram'
9    return 'Pangram'