Skip to content

Commit fb79c57

Browse files
committed
first level resolution
1 parent dd5229b commit fb79c57

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use o IntelliSense para saber mais sobre os atributos possíveis.
3+
// Focalizar para exibir as descrições dos atributos existentes.
4+
// Para obter mais informações, acesse: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Depurador do Python: Arquivo Atual",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "${file}",
12+
"console": "integratedTerminal"
13+
}
14+
]
15+
}

anwers/lvl_1/level_1.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@
99
# Hints:
1010
# Consider use range(#begin, #end) method
1111

12+
numbers = []
13+
for n in range(2000, 3200):
14+
if (n % 7 == 0) and (n % 5 != 0) :
15+
numbers.append(str(n))
16+
print(",".join(numbers))

0 commit comments

Comments
 (0)