aboutsummaryrefslogtreecommitdiff
path: root/challenge-256/eric-cheung/python/ch-1.py
blob: 7fad78fbe6bedeefcacfd9a3bab7d81e2c8a5c35 (plain)
1
2
3
4
5
6
7
8
## arrWords = ["ab", "de", "ed", "bc"] ## Example 1
## arrWords = ["aa", "ba", "cd", "ed"] ## Example 2
arrWords = ["uv", "qp", "st", "vu", "mn", "pq"] ## Example 3

arrOutput = [arrWords[nRowLoop] for nRowLoop in range(len(arrWords) - 1) for nColLoop in range(nRowLoop + 1, len(arrWords)) if arrWords[nRowLoop] == arrWords[nColLoop][::-1]]

print (len(arrOutput))