Skip to content

Commit

Permalink
Finalizando o desafio
Browse files Browse the repository at this point in the history
  • Loading branch information
davidambz committed Oct 4, 2023
1 parent cf41ab8 commit 221def9
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
23 changes: 23 additions & 0 deletions challenges/1-cubo-simples/python/davidspader/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Submissão de Exercicio

**Exercicio:** 1 - Cubo Simples

**Nickname:** davidspader

**Nível Técnico:** Junior

**Empresa:**

**Twitter**: https://twitter.com/xsplsh

**Dificuldade de Resolução:** Baixa

**Comentários:**

**Como rodar o desafio**:

Dentro do diretório do projeto, utilize o comando abaixo:

```bash
python cubosimples.py 2
```
6 changes: 6 additions & 0 deletions challenges/1-cubo-simples/python/davidspader/cubosimples.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from sys import argv

numero = argv[1]
cubo = int(numero) ** 3

print(cubo)

0 comments on commit 221def9

Please sign in to comment.