题解 | #查找兄弟单词#
查找兄弟单词
http://www.nowcoder.com/practice/03ba8aeeef73400ca7a37a5f3370fe68
str1=input().split(' ') str2=sorted(str1[1:1+int(str1[0])]) str3=[] for x in str2:
print(x)
if str1[-2]!=x and sorted(str1[-2])==sorted(x):
str3.append(x)
print(str3)
print(len(str3))
print(str1[-1])
if len(str3)>int(str1[-1]): print(str3[int(str1[-1])-1])