谱写未来 发表于 2017-9-13 09:29:19

看看答案

BngThea 发表于 2017-9-13 09:58:36

def compare(s1,s2):
    for i in s1:
      if i not in s2:
            return False
    for j in s2:
      if j not in s1:
            return False
    return True
s1 = 'good day'
s2 = 'goodday'
s3 = 'gdooa dy'
print(compare(s1,s2))
print(compare(s1,s3))


结果:
False
True

樱花冷雨 发表于 2017-9-13 10:03:11

{:5_95:}

wyp02033 发表于 2017-9-22 20:38:27

def test_no_repeat(s1,s2):
    l1 = list(s1)
    l2 = list(s2)
    l1.sort()
    l2.sort()
    return l1 == l2

def test_repeat(s1,s2):
    return set(s1) == set(s2)

shigure_takimi 发表于 2017-12-5 14:40:31

def fun1(s1, s2): # s1内字符可以重复使用
    s = set(s2)
    for i in s:
      if i not in s1:
            return False
    return True

def fun2(s1, s2):# s1内字符不可以重复使用
    # 计算s2内字符种类及个数
    s = set(s2)
    dictS2 = {}
    for i in s:
      dictS2 = s2.count(i)
    # S1中相应的字符个数应该大于等于S2中字符个数
    enough = []
    for i in dictS2:
      if s1.count(i) >= dictS2:
            enough.append(True)
      else:
            enough.append(False)
    if sum(enough) == len(s):
      return True
    else:
      return False

print(fun1('abct','bat')) # True
print(fun2('abt','batt')) # False
   

victor.xu 发表于 2018-3-29 20:58:27

看看

永恒的蓝色梦想 发表于 2019-8-20 11:17:06

本帖最后由 永恒的蓝色梦想 于 2019-8-20 11:22 编辑

可以重复使用:lambda s1,s2:all((i in s1 for i in set(s2)))
不可以重复使用:lambda s1,s2:all((s1.count(i)>=s2.count(i)for i in set(s2)))

ruihuawu 发表于 2019-8-20 11:57:58

学习来了。
{:10_256:}

xl999 发表于 2019-8-20 15:24:34


新手,借鉴一下,嘿嘿

qq8411450 发表于 2019-8-20 17:47:06

{:10_277:}

Geoffreylee 发表于 2020-3-12 13:55:54

from collections import Counter

# 可重复使用
def f_79_dup_use(str1, str2):
    return True if Counter(set(str1)) == Counter(set(str2)) else False

# 不可重复使用
def f_79_no_dup_use(str1, str2):
    return True if Counter(str1) == Counter(str2) else False

print(f_79_dup_use('ohel', 'hello'))
print(f_79_no_dup_use('ohel', 'hello'))

holiday_python 发表于 2020-6-30 10:14:34

使用permutations模块

19971023 发表于 2020-8-1 09:59:43

1

aironeng 发表于 2020-12-9 09:05:11

学习
页: 1 2 [3]
查看完整版本: Python:每日一题 79(答题领鱼币)