Determines the number of letters in a word that match their alphabetical position.
Given a string, return the number of letters in the string that match their alphabetical position. For example, given the string "aoc", return 2 since "a" and "c" appear in the string at positions 1 and 3, respectively.
# | Size | % | Users |
---|---|---|---|
#1 | 47 c. | Top 35% | |
#2 | 48 c. | Top 43% | |
#3 | 49 c. | Top 52% | |
#4 | 52 c. | Top 61% | |
#5 | 53 c. | Top 74% | |
#6 | 54 c. | Top 87% | |
#7 | 57 c. | Top 96% | |
#8 | 60 c. | Top 100% |