Skip to content

Instantly share code, notes, and snippets.

View xaldoxxx's full-sized avatar
🏠
Trabajando desde casa

aldo manfredi xaldoxxx

🏠
Trabajando desde casa
View GitHub Profile
@xaldoxxx
xaldoxxx / fizzbuzz.py
Created February 16, 2022 13:40
ejeciccio codewars
def FizzBuzz(num):
'''
FizzBuzz
<num> is an integer
Prints out FizzBuzz if <num> is divisible by 3 and 5
'''
if num % 3 == 0 and num % 5 == 0:
return "FizzBuzz"
@xaldoxxx
xaldoxxx / p4vaditas_003.ipynb
Last active April 12, 2021 05:44
p4vaditas_003.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.