diff --git a/1ano/1semestre/fp/extra3/ex02.py b/1ano/1semestre/fp/extra3/ex02.py index 06af1d6..5809bdc 100644 --- a/1ano/1semestre/fp/extra3/ex02.py +++ b/1ano/1semestre/fp/extra3/ex02.py @@ -5,12 +5,8 @@ # os primeiros n elementos igualam os últimos n elementos (sem sobreposição). def firstEqualLast(lst): - if len(lst) <= 1: - return 0 - n = 0 for i in range(1, len(lst)//2+1): - if lst[:i] == lst[len(lst)-i:]: + if lst[:i] == lst[-i:]: n = i - return n