0
Test case hidden
I have completed the chelenge but in that chelenge the test cases are hidden Wich are wrong in my code The code is # flowing words sentace = input() flowing = "true" ls = sentace.split(" ") for i in range(len(ls)): if(i == len(ls)-1): break if(ls[i][-1] == ls[i+1][0]): flowing = "true" else: flowing = "false" print(flowing )
2 Antworten
+ 6
If you post your code maybe I or someone else could help you.
0
Ok updated the code