forked from henriquebastos/pacote-desafios-pythonicos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
11_remove_adjacent.py
46 lines (35 loc) · 1.24 KB
/
11_remove_adjacent.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
"""
11. remove_adjacent
Dada uma lista de números, retorne uma lista onde todos elementos
adjacentes iguais são reduzidos a um único elemento.
Exemplo: [1, 2, 2, 3]
Irá retornar: [1, 2, 3]
"""
# TODO: tentar implementar sem utilizar indíce usando a função zip
def remove_adjacent(nums):
without_adj = []
for n in nums:
if without_adj and n == without_adj[-1]:
continue
without_adj.append(n)
return without_adj
# --- Daqui para baixo são apenas códigos auxiliáries de teste. ---
def test(f, in_, expected):
"""
Executa a função f com o parâmetro in_ e compara o resultado com expected.
:return: Exibe uma mensagem indicando se a função f está correta ou não.
"""
out = f(in_)
if out == expected:
sign = '✅'
info = ''
else:
sign = '❌'
info = f'e o correto é {expected!r}'
print(f'{sign} {f.__name__}({in_!r}) retornou {out!r} {info}')
if __name__ == '__main__':
# Testes que verificam o resultado do seu código em alguns cenários.
test(remove_adjacent, [1, 2, 2, 3], [1, 2, 3])
test(remove_adjacent, [2, 2, 3, 3, 3], [2, 3])
test(remove_adjacent, [], [])
test(remove_adjacent, [2, 2, 3, 3, 3, 2, 2], [2, 3, 2])