aboutsummaryrefslogtreecommitdiff
path: root/challenge-239/eric-cheung/python/ch-1.py
blob: 7d0991df773264d3292b0bf20c3ae280493664f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## Example 1
## arrInput_01 = ["ab", "c"]
## arrInput_02 = ["a", "bc"]

## Example 2
## arrInput_01 = ["ab", "c"]
## arrInput_02 = ["ac", "b"]

## Example 3
arrInput_01 = ["ab", "cd", "e"]
arrInput_02 = ["abcde"]

print ("".join(arrInput_01) == "".join(arrInput_02))