Easy
,Array
,String
,Hash Table
953. Verifying an Alien Dictionary
In an alien language, surprisingly, they also use English lowercase letters, but possibly in a different order
. The order
of the alphabet is some permutation of lowercase letters.
Given a sequence of words
written in the alien language, and the order
of the alphabet, return true
if and only if the given words
are sorted lexicographically in this alien language.
Example 1:
Example 2:
Example 3:
Constraints:
words.length
<= 100words[i].length
<= 20order.length
== 26words[i]
and order
are English lowercase letters.Ron ChenFeb, 2, 2023