Skip to content

Commit 431eb8b

Browse files
author
Partho Biswas
committed
references added
1 parent 2ad9218 commit 431eb8b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -515,13 +515,18 @@ Some helpful links, channels, tutorials, blogs.
515515
</br>
516516
Learn the following modules by heart. Just knowing all of the following items will made most of the problem one-liners.
517517
01. [itertools - Functions creating iterators for efficient looping](https://docs.python.org/3/library/itertools.html) - They will help you, more often than you think
518+
- [Iterators and Iterables - What Are They and How Do They Work?](https://www.youtube.com/watch?v=jTYiNjvnHZY)
519+
- [Itertools Module - Iterator Functions for Efficient Looping](https://www.youtube.com/watch?v=Qu3dThVy6KQ)
518520
02. [collections - High-performance container datatypes](https://docs.python.org/3/library/collections.html) - Believe me, this is pretty awesome
519521
03. [heapq - Heap queue algorithm](https://docs.python.org/3/library/heapq.html) - Obviously, we don't have to hand-code heaps anymore
520522
04. [bisect - Array bisection algorithm](https://docs.python.org/3/library/bisect.html) - Binary Search, simplified
521523
05. [Set](https://docs.python.org/3/library/stdtypes.html#set)
522524
06. [Dict](https://docs.python.org/3/library/stdtypes.html#mapping-types-dict) - Now on, hash Tables are fun to work with
523525
07. [Sorting](https://wiki.python.org/moin/HowTo/Sorting) - Don't participate in competitions without reading this completely.
524526
08. Start using lambda extensively
527+
- [Lambda Expressions & Anonymous Functions](https://tinyurl.com/t9aptuz)
528+
- [Map, Filter, and Reduce Functions](https://tinyurl.com/rdn53js)
529+
- [Lambda, filter, reduce and map](https://www.python-course.eu/python3_lambda.php)
525530
09. [functools](https://docs.python.org/3/library/functools.html)
526531
10. Apart from these, all the builtin methods of default containers.
527532
11. [Understanding slice notation](https://stackoverflow.com/questions/509211/understanding-slice-notation) - you will need/use it more than you can imagine

0 commit comments

Comments
 (0)