Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Feito exercício 2 da seção de listas

close devpro-br#61
  • Loading branch information
marilia-borgo authored Jun 24, 2022
1 parent 7b40a4d commit 66a64f2
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/corretor_de_exercicios_secao_04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
if: always()
run: |
python -m doctest -f secao_04_exercicios_lista/ex_01_vetor_5_numeros.py
- name: Correção do Exercício 02 da seção de Listas
if: always()
run: |
python -m doctest -f secao_04_exercicios_lista/ex_02_vetores_inverso.py
- name: Correção do Exercício 05 da seção de Listas
if: always()
run: |
Expand Down
20 changes: 20 additions & 0 deletions secao_04_exercicios_lista/ex_02_vetores_inverso.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
"""
Exercício 02 da seção de listas da Python Brasil:
https://wiki.python.org.br/ExerciciosListas
Faça um Programa que leia um vetor de 10 números reais e mostre-os na ordem inversa.
>>> inverter_vetores([0,1,2,3,4,5,6,7,8,9])
[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
>>> inverter_vetores([10,14,16,26,36,46,58,24,35,40])
[40, 35, 24, 58, 46, 36, 26, 16, 14, 10]
"""


def inverter_vetores(inteiros: list) -> str:
"""Escreva aqui em baixo a sua solução"""

0 comments on commit 66a64f2

Please sign in to comment.