A string contains the word "innokodakademija" if a subsequence of its characters spell "innokodakademija".
Write a function that accepts a string and returns “YES” if the string contains a subsequence of the word innokodakademija or "NO" if it does not.
innokodakademija_in_string(“eddaaabt”) ➞ “NO”
innokodakademija_in_string(“edwardisabletodoit”) ➞ “YES”
innokodakademija_in_string(“abecdfghijklmnopqrstuvwxyz”) ➞ “NO”