Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
GitLab Basics
FizzBuzz
Commits
b69b871b
Commit
b69b871b
authored
Jul 16, 2020
by
Perez Domingo, Victor
Browse files
Merge branch 'master' into 'master'
Master See merge request
!3
parents
a13dfb2c
8a0c7f71
Pipeline
#30237
passed with stage
in 19 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
b69b871b
image
:
"
python:3.7"
before_script
:
-
pip install -r requirements.txt
test
:
script
:
-
pytest
tags
:
-
docker
fizzbuzz.py
View file @
b69b871b
def
fizzbuzz
(
n
:
int
)
->
str
:
def
fizzbuzz
(
i
:
int
)
->
str
:
"""
Write a program that prints the numbers from 1 to 100.
But for multiples of three print "Fizz" instead of the number
And for the multiples of five print "Buzz".
For numbers which are multiples of both three and five print "FizzBuzz".
"""
return
""
if
i
%
3
==
0
and
i
%
5
==
0
:
s
=
"FizzBuzz"
elif
i
%
3
==
0
:
s
=
"Fizz"
elif
i
%
5
==
0
:
s
=
"Buzz"
else
:
s
=
str
(
i
)
return
s
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment