9 lines
206 B
Python
9 lines
206 B
Python
def match_words(words):
|
|
ctr = 0
|
|
|
|
for word in words:
|
|
if len(word) > 1 and word[0] == word[-1]:
|
|
ctr += 1
|
|
return ctr
|
|
|
|
print(match_words(['abc', 'xyz', 'aba', '1221'])) |