鱼C论坛

 找回密码
 立即注册
查看: 2054|回复: 0

[学习笔记] Leetcode 953. Verifying an Alien Dictionary

[复制链接]
发表于 2020-8-4 05:44:43 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
  1. 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.

  2. 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 lexicographicaly in this alien language.



  3. Example 1:

  4. Input: words = ["hello","leetcode"], order = "hlabcdefgijkmnopqrstuvwxyz"
  5. Output: true
  6. Explanation: As 'h' comes before 'l' in this language, then the sequence is sorted.
  7. Example 2:

  8. Input: words = ["word","world","row"], order = "worldabcefghijkmnpqstuvxyz"
  9. Output: false
  10. Explanation: As 'd' comes after 'l' in this language, then words[0] > words[1], hence the sequence is unsorted.
  11. Example 3:

  12. Input: words = ["apple","app"], order = "abcdefghijklmnopqrstuvwxyz"
  13. Output: false
  14. Explanation: The first three characters "app" match, and the second string is shorter (in size.) According to lexicographical rules "apple" > "app", because 'l' > '∅', where '∅' is defined as the blank character which is less than any other character (More info).


  15. Constraints:

  16. 1 <= words.length <= 100
  17. 1 <= words[i].length <= 20
  18. order.length == 26
  19. All characters in words[i] and order are English lowercase letters.
复制代码

  1. class Solution:
  2.     def isAlienSorted(self, words: List[str], order: str) -> bool:
  3.         for i in range(1, len(words)):
  4.             first = words[i - 1]
  5.             second = words[i]
  6.             length = min(len(first), len(second))
  7.             if length == len(second) and first[:length] == second:
  8.                 return False
  9.             
  10.             j = 0
  11.             while j < length and first[j] == second[j]:
  12.                 j += 1
  13.             if j >= len(first): return True
  14.             index_first = order.find(first[j])
  15.             index_second = order.find(second[j])
  16.             
  17.             if index_first > index_second:
  18.                 return False
  19.             
  20.         return True
复制代码

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-6-6 09:28

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表