Skip to content

Instantly share code, notes, and snippets.

View sklarow's full-sized avatar
🇬🇧
Living in the UK

Allan Sklarow sklarow

🇬🇧
Living in the UK
View GitHub Profile
@sklarow
sklarow / exerc56.py
Last active May 6, 2022 17:10
Exercicio 56 - Guanabara
def main():
somaIdade = 0
nomeHomemMaisVelho = ""
idadeHomemMaisVelho = 0
qtdMulheresMenosDe20Anos = 0
for i in range(4):
print(f"Pessoa #{i+1}")
nome = str(input("Nome: "))
@sklarow
sklarow / FizzBuzz.java
Created December 21, 2021 13:57
FizzBuzz Exercise in Java!
public class FizzBuzz {
public static void main(String[] args) {
for (int number=1; number <= 100; number++){
String result = "";
if (number % 3 == 0)
result = "Fizz";
if (number % 5 == 0)
result += "Buzz";
if (result.equals(""))
System.out.println(number);
@sklarow
sklarow / bd_watson.json
Created December 3, 2017 14:53
Watson - VacinaBO - Banco de Dados
{"name":"VacinaBô 2.0","created":"2017-12-02T23:41:23.189Z","intents":[{"intent":"IdadeParaTomar","created":"2017-12-03T02:57:46.847Z","updated":"2017-12-03T02:58:21.866Z","examples":[{"text":"Com quantos anos posso tomar","created":"2017-12-03T02:57:55.145Z","updated":"2017-12-03T02:57:55.145Z"},{"text":"Qual a idade para tomar","created":"2017-12-03T02:57:57.632Z","updated":"2017-12-03T02:57:57.632Z"},{"text":"Idade para tomar","created":"2017-12-03T02:58:01.319Z","updated":"2017-12-03T02:58:01.319Z"},{"text":"Com qual idade meu filho pode tomar?","created":"2017-12-03T02:58:10.771Z","updated":"2017-12-03T02:58:10.771Z"},{"text":"Até quantos anos posso tomar","created":"2017-12-03T02:58:21.866Z","updated":"2017-12-03T02:58:21.866Z"}],"description":null},{"intent":"OqueE","created":"2017-12-03T02:51:41.948Z","updated":"2017-12-03T10:46:02.663Z","examples":[{"text":"Qual a função da vacina","created":"2017-12-03T02:51:50.689Z","updated":"2017-12-03T02:51:50.689Z"},{"text":"Existe vacina contra","created":"201