Coding & AI Resources
34.3K subscribers
217 photos
547 files
153 links
๐Ÿ“šGet daily updates for :

โœ… Free resources
โœ… All Free notes
โœ… Internship,Jobs
and a lot more....๐Ÿ˜

๐Ÿ“Join & Share this channel with your friends and college mates โค๏ธ

Managed by: @love_data

Buy ads: https://telega.io/c/leadcoding
Download Telegram
โค1๐Ÿ‘1
Do like,if you want more such notes ๐Ÿš€
๐Ÿ‘3
Create a Progress Bars using Python
โค1
Python Cheat Sheet.pdf
677.7 KB
This cheat sheet includes basic python required for data analysis excluding pandas, numpy & other libraries
๐Ÿ‘3
Advanced Concepts in Operating Systems (Indian Edition).pdf
331.2 MB
Advanced Concepts in Operating Systems
Mukesh Singhal, 2008 (scanned)
HTML Tags List.pdf
115.1 KB
HTML Tags List ๐Ÿš€

Do not forget to React โค๏ธ to this Message for More Content Like this

Thanks For Joining All โค๏ธ๐Ÿ™
๐Ÿ‘5โค1
Best Resources for Tech Interviews
๐Ÿ‘2๐Ÿ”ฅ1
๐ŸŒป ๐—จ๐—ป๐—ฑ๐—ฒ๐—ฟ๐˜€๐˜๐—ฎ๐—ป๐—ฑ ๐—•๐—ถ๐—ด ๐—ข ๐—ป๐—ผ๐˜๐—ฎ๐˜๐—ถ๐—ผ๐—ป!

O(1) - Constant Time: Simple tasks that take the same amount of time no matter how much data you have, like finding an item in a list by its position.

O(log n) - Logarithmic Time: Tasks that take less time as the data grows, like finding an item in a sorted list by repeatedly dividing it in half.

O(n) - Linear Time: Tasks that take more time as the data grows, like counting all items in a list by checking each one.

O(n log n) - Linearithmic Time: Tasks that get a bit slower as the data grows, like sorting a list using efficient methods such as merge sort or quick sort.

O(nยฒ) - Quadratic Time: Tasks that get noticeably slower as the data grows, like sorting a list using simpler methods like bubble sort or finding all pairs in a list.

O(2^n) - Exponential Time: Tasks that get much slower as the data grows, like finding all subsets of a set or solving complex problems like the traveling salesman using a basic approach.

O(n!) - Factorial Time: Tasks that get extremely slow as the data grows, like solving problems that involve checking every possible arrangement of items.
๐Ÿ‘4
Expert Python Programming.pdf
4.3 MB
Expert Python Programming (2021)

100 likes = new books
๐Ÿ‘26๐Ÿ”ฅ1