From 2605688965bf4527031c172c97a0ed7429f0b40a Mon Sep 17 00:00:00 2001 From: Elvira Quiroz Date: Tue, 1 Dec 2020 16:05:44 +0000 Subject: [PATCH 1/2] bug fixed --- exercises/06-lambda-functions/README.es.md | 2 +- exercises/06-lambda-functions/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/06-lambda-functions/README.es.md b/exercises/06-lambda-functions/README.es.md index cc894d4..b9ee110 100644 --- a/exercises/06-lambda-functions/README.es.md +++ b/exercises/06-lambda-functions/README.es.md @@ -29,5 +29,5 @@ Así es como declararías una función normal ```python # this function return True if a number is odd. def is_odd(num): - return (num % 2) == 0: + return (num % 2)! == 0: ``` diff --git a/exercises/06-lambda-functions/README.md b/exercises/06-lambda-functions/README.md index 5ca8c31..3866aeb 100755 --- a/exercises/06-lambda-functions/README.md +++ b/exercises/06-lambda-functions/README.md @@ -34,6 +34,6 @@ Here is how you would declare it like a normal function ```python # this function return True if a number is odd. def is_odd(num): - return (num % 2) == 0: + return (num % 2) !== 0: ```   From 0d84afabfee3e22f8d4350696a43ecb1bafe1386 Mon Sep 17 00:00:00 2001 From: Elvira Quiroz Date: Tue, 1 Dec 2020 16:08:56 +0000 Subject: [PATCH 2/2] bug fixed --- exercises/03-What-is-a-function/README.es.md | 2 +- exercises/03-What-is-a-function/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/03-What-is-a-function/README.es.md b/exercises/03-What-is-a-function/README.es.md index ae4883c..4f0aa47 100644 --- a/exercises/03-What-is-a-function/README.es.md +++ b/exercises/03-What-is-a-function/README.es.md @@ -16,7 +16,7 @@ total = sum(2,3) total2 = sum(5,10) print(total) # prints 5 on the terminal -print(total2) # prints 10 on the terminal +print(total2) # prints 15 on the terminal ``` # 📝 Instrucciones diff --git a/exercises/03-What-is-a-function/README.md b/exercises/03-What-is-a-function/README.md index f496580..c49d55c 100755 --- a/exercises/03-What-is-a-function/README.md +++ b/exercises/03-What-is-a-function/README.md @@ -20,7 +20,7 @@ total = sum(2,3) total2 = sum(5,10) print(total) # prints 5 on the terminal -print(total2) # prints 10 on the terminal +print(total2) # prints 15 on the terminal ``` # 📝 Instructions