leetcode-187周赛-5400-旅行终点站
Posted 真不知道叫啥好
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-187周赛-5400-旅行终点站相关的知识,希望对你有一定的参考价值。
提交:O(N)
class Solution: def destCity(self, paths: List[List[str]]) -> str: dic = {} for i,v in paths: dic[i] = v tmp = paths[0][1] while tmp in dic: tmp = dic[tmp] return tmp
以上是关于leetcode-187周赛-5400-旅行终点站的主要内容,如果未能解决你的问题,请参考以下文章