leetcode苹果-verifying-an-alien-dictionary:验证外星人词典

时间:2024-07-20 13:10:22
【文件属性】:

文件名称:leetcode苹果-verifying-an-alien-dictionary:验证外星人词典

文件大小:2KB

文件格式:ZIP

更新时间:2024-07-20 13:10:22

系统开源

leetcode 苹果验证外星人词典 在外星语言中,令人惊讶的是,它们也使用英文小写字母,但顺序可能不同。 字母表的顺序是一些小写字母的排列。 给定一个用外星语言书写的单词序列和字母表的顺序,当且仅当给定的单词在该外星语言中按字典顺序排序时才返回 true。 Example 1: Input: words = ["hello","leetcode"], order = "hlabcdefgijkmnopqrstuvwxyz" Output: true Explanation: As 'h' comes before 'l' in this language, then the sequence is sorted. Example 2: Input: words = ["word","world","row"], order = "worldabcefghijkmnpqstuvxyz" Output: false Explanation: As 'd' comes after 'l' in this language, then words[0] > words[1], hence t


【文件预览】:
verifying-an-alien-dictionary-master
----README.md(4KB)

网友评论