diff --git a/build.py b/build.py index b1b0df1..b2a82f7 100644 --- a/build.py +++ b/build.py @@ -1,5 +1,6 @@ def solution(list): - ''' - Enter your code here - ''' - return value \ No newline at end of file + value = False + lst = "".join(list) + if lst == lst[::-1]: + value = True + return value