From c674e722ee0a0bb52b203cc8c6b394d5b49e34ad Mon Sep 17 00:00:00 2001 From: Rakesh Pandey Date: Sun, 9 Jan 2022 23:58:21 +0530 Subject: [PATCH 1/2] Testing the change for open source contribution --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 600bced..b9524e6 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,4 @@ This tutorial covers data structures and algorithms in python. Every tutorial ha To watch the videos, you can go check the playlist out at: https://www.youtube.com/playlist?list=PLeo1K3hjS3uu_n_a__MI_KktGTLYopZ12 To subscribe to codebasics youtube channel: https://www.youtube.com/c/codebasics +----- From 2073c7957a4b8dd370620f3410d2be8cefedbedd Mon Sep 17 00:00:00 2001 From: Rakesh Pandey Date: Mon, 10 Jan 2022 23:50:28 +0530 Subject: [PATCH 2/2] mzx number now printed in the list --- data_structures/2_Arrays/Solution/3_odd_even_numbers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/2_Arrays/Solution/3_odd_even_numbers.py b/data_structures/2_Arrays/Solution/3_odd_even_numbers.py index ec1c4b7..688003b 100644 --- a/data_structures/2_Arrays/Solution/3_odd_even_numbers.py +++ b/data_structures/2_Arrays/Solution/3_odd_even_numbers.py @@ -2,7 +2,7 @@ odd_numbers = [] -for i in range(1, max): +for i in range(1, max+1): if i % 2 == 1: odd_numbers.append(i)