We know the alphabets order. like A is 1, B is 2 and goes on.
Now lets take a sentence and from it lets take the first word. We need to find each alphabet's corresponding order number that of word and sum it. Like "in" 9+14 = 23.
Similarly we do the same for the all words in that sentence.
Create a function that takes a string and returns true if the sum of the position of every letter in the alphabet is even and false if the sum is odd.
Examples
Notes Case insensitive. Ignore non-letter symbols.