统计一致字符串的数目

给你一个由不同字符组成的字符串 allowed 和一个字符串数组 words 。如果一个字符串的每一个字符都在 allowed 中,就称这个字符串是 一致字符串 。
来源:力扣(LeetCode)--1684
题解:在words多维字符元素中,每当一个元素,即一个一维数组都是由allowed中元素组成,一致字符串数量就加1

y_num = 0
allowed = input('请输入allowed:')
x_list = input('请输入words(以空格隔开):')
lt = [str(n) for n in x_list.split()]
for i in range(len(lt)):
x_num = 0
for j in lt[i]:
if j not in allowed:
x_num = 1
if x_num == 0:
y_num += 1
print('一致字符串的数目是:',y_num)

统计一致字符串的数目

 


 

 
上一篇:C# 8.0 可为空的引用类型


下一篇:java.sql.SQLException: Connection is read-only. Queries leading to data modification are not allowed