0
Matching String D*oder
Could anybody help me correcting my code to hit the perfect score ?, it’s always wrong in the #1 TestCase jumlah = input() kata1 = input().lower().split() kata2 = input().lower().split() j = len(kata1) k = len(kata2) if j > 1 and j < 100: if kata1[1] in kata1[0]: print("Yes") else: print("No") if k > 1 and k < 100: if kata2[1] in kata2[0]: print("Yes") else: print("No")
7 Antworten
+ 2
Yeah man, what's it supposed to do? And don't they usually show the first couple? If so, what's the input?
+ 1
okay, so whats the input for the one you have issues with? And what is the code supposed to do?
+ 1
okay, no matter, whats the sample output?
0
Yeah, they show the first couple. But I still didn’t know what’s wrong with my code. Really stuck man
0
Is sample input counted as first TestCase in there?
Sample Input:
2
abcde abc
Pqrst pr
0
Sample output:
Yes
No
0
Alright, my bad, driving. So what does the Yes or No tell us?