leetcode?pythonFind the Difference
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode?pythonFind the Difference相关的知识,希望对你有一定的参考价值。
#-*- coding: UTF-8 -*-
class Solution(object):
def findTheDifference(self, s, t):
s=sorted(list(s))
t=sorted(list(t))
for st in s:
p=t.index(st)
del t[p]
return ‘‘.join(t)
sol=Solution()
print sol.findTheDifference(‘abddcde‘, ‘eabadbdccdde‘)
以上是关于leetcode?pythonFind the Difference的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode #389. Find the Difference
Leetcode 1154. Day of the Year
LeetCode --- 1385. Find the Distance Value Between Two Arrays 解题报告