Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----
2 changes: 1 addition & 1 deletion data_structures/2_Arrays/Solution/3_odd_even_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down