Coding Projects
61K subscribers
774 photos
1 video
277 files
376 links
Channel specialized for advanced concepts and projects to master:
* Python programming
* Web development
* Java programming
* Artificial Intelligence
* Machine Learning

Managed by: @love_data
Download Telegram
Seaborn Cheatsheet
2
Scientific programming in python cheat sheet
1
If I wanted to get my opportunity to interview at Google or Amazon for SDE roles in the next 6-8 months…

Here’s exactly how I’d approach it (I’ve taught this to 100s of students and followed it myself to land interviews at 3+ FAANGs):

► Step 1: Learn to Code (from scratch, even if you’re from non-CS background)

I helped my sister go from zero coding knowledge (she studied Biology and Electrical Engineering) to landing a job at Microsoft.

We started with:
- A simple programming language (C++, Java, Python — pick one)
- FreeCodeCamp on YouTube for beginner-friendly lectures
- Key rule: Don’t just watch. Code along with the video line by line.

Time required: 30–40 days to get good with loops, conditions, syntax.

► Step 2: Start with DSA before jumping to development

Why?
- 90% of tech interviews in top companies focus on Data Structures & Algorithms
- You’ll need time to master it, so start early.

Start with:
- Arrays → Linked List → Stacks → Queues
- You can follow the DSA videos on my channel.
- Practice while learning is a must.

► Step 3: Follow a smart topic order

Once you’re done with basics, follow this path:

1. Searching & Sorting
2. Recursion & Backtracking
3. Greedy
4. Sliding Window & Two Pointers
5. Trees & Graphs
6. Dynamic Programming
7. Tries, Heaps, and Union Find

Make revision notes as you go — note down how you solved each question, what tricks worked, and how you optimized it.

► Step 4: Start giving contests (don’t wait till you’re “ready”)

Most students wait to “finish DSA” before attempting contests.
That’s a huge mistake.

Contests teach you:
- Time management under pressure
- Handling edge cases
- Thinking fast

Platforms: LeetCode Weekly/ Biweekly, Codeforces, AtCoder, etc.
And after every contest, do upsolving — solve the questions you couldn’t during the contest.

► Step 5: Revise smart

Create a “Revision Sheet” with 100 key problems you’ve solved and want to reattempt.

Every 2-3 weeks, pick problems randomly and solve again without seeing solutions.

This trains your recall + improves your clarity.

Coding Projects:👇
https://whatsapp.com/channel/0029VazkxJ62UPB7OQhBE502

ENJOY LEARNING 👍👍
2
Beginner’s Roadmap to Learn Data Structures & Algorithms

1. Foundations: Start with the basics of programming and mathematical concepts to build a strong foundation.

2. Data Structure: Dive into essential data structures like arrays, linked lists, stacks, and queues to organise and store data efficiently.

3. Searching & Sorting: Learn various search and sort techniques to optimise data retrieval and organisation.

4. Trees & Graphs: Understand the concepts of binary trees and graph representation to tackle complex hierarchical data.

5. Recursion: Grasp the principles of recursion and how to implement recursive algorithms for problem-solving.

6. Advanced Data Structures: Explore advanced structures like hashing, heaps, and hash maps to enhance data manipulation.

7. Algorithms: Master algorithms such as greedy, divide and conquer, and dynamic programming to solve intricate problems.

8. Advanced Topics: Delve into backtracking, string algorithms, and bit manipulation for a deeper understanding.

9. Problem Solving: Practice on coding platforms like LeetCode to sharpen your skills and solve real-world algorithmic challenges.

10. Projects & Portfolio: Build real-world projects and showcase your skills on GitHub to create an impressive portfolio.

Best DSA RESOURCES: https://topmate.io/coding/886874

All the best 👍👍
2
DSA Handwritten Notes
2