Coding Projects
61K subscribers
760 photos
1 video
277 files
362 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
We have the Key to unlock AI-Powered Data Skills!

We have got some news for College grads & pros:

Level up with PW Skills' Data Analytics & Data Science with Gen AI course!

Real-world projects
Professional instructors
Flexible learning
Job Assistance

Ready for a data career boost? ➡️
Click Here for Data Science with Generative AI Course:

https://shorturl.at/j4lTD

Click Here for Data Analytics Course:
https://shorturl.at/7nrE5
3🆒1
Natural Language Processing Projects.pdf
13.2 MB
Natural Language Processing Projects
Akshay Kulkarni, 2022
Python Machine Learning Projects.pdf
871.9 KB
Python Machine Learning Projects
DigitalOcean, 2022
R Projects For Dummies.pdf
5.6 MB
R Projects for Dummies
Joseph Schmuller, 2018
Learning Kotlin.pdf
1.3 MB
Learning Kotlin
Stack Overflow contributors
1👍1
Currently it's for working professionals only, I will update once we launch it for students as well
👍4😢1
Programming Languages & What They’re Really Good At

Python 🐍 – Data analysis, automation, AI/ML

Java – Android apps, enterprise software

JavaScript – Interactive websites, full-stack apps

C++ ⚙️ – Game development, system-level software

C# 🎮 – Unity games, Windows apps

R 📊 – Statistical analysis, data visualization

Go 🚀 – Fast APIs, cloud-native apps

PHP 🐘 – WordPress, backend for websites

Swift 🍎 – iOS/macOS apps

Kotlin 📱 – Modern Android development
👍61
Top 10 Python Project Ideas 💡
🔥4👍2
Resources for Tech Interviews 👆
👍3🔥2
List of AI Project Ideas 👨🏻‍💻🤖 -

Beginner Projects

🔹 Sentiment Analyzer
🔹 Image Classifier
🔹 Spam Detection System
🔹 Face Detection
🔹 Chatbot (Rule-based)
🔹 Movie Recommendation System
🔹 Handwritten Digit Recognition
🔹 Speech-to-Text Converter
🔹 AI-Powered Calculator
🔹 AI Hangman Game

Intermediate Projects

🔸 AI Virtual Assistant
🔸 Fake News Detector
🔸 Music Genre Classification
🔸 AI Resume Screener
🔸 Style Transfer App
🔸 Real-Time Object Detection
🔸 Chatbot with Memory
🔸 Autocorrect Tool
🔸 Face Recognition Attendance System
🔸 AI Sudoku Solver

Advanced Projects

🔺 AI Stock Predictor
🔺 AI Writer (GPT-based)
🔺 AI-powered Resume Builder
🔺 Deepfake Generator
🔺 AI Lawyer Assistant
🔺 AI-Powered Medical Diagnosis
🔺 AI-based Game Bot
🔺 Custom Voice Cloning
🔺 Multi-modal AI App
🔺 AI Research Paper Summarizer

Join for more: https://t.me/machinelearning_deeplearning
2👍2👎1
List of most asked Programming Interview Questions.

Arrays

- How is an array sorted using quicksort?
- How do you reverse an array?
- How do you remove duplicates from an array?
- How do you find the 2nd largest number in an unsorted integer array?

Linked Lists

- How do you find the length of a linked list?
- How do you reverse a linked list?
- How do you find the third node from the end?
- How are duplicate nodes removed in an unsorted linked list?

Strings

- How do you check if a string contains only digits?
- How can a given string be reversed?
- How do you find the first non-repeated character?
- How do you find duplicate characters in strings?

Binary Trees

- How are all leaves of a binary tree printed?
- How do you check if a tree is a binary search tree?
- How is a binary search tree implemented?
- Find the lowest common ancestor in a binary tree?

Graph

- How to detect a cycle in a directed graph?
- How to detect a cycle in an undirected graph?
- Find the total number of strongly connected components?
- Find whether a path exists between two nodes of a graph?
- Find the minimum number of swaps required to sort an array.

Dynamic Programming

1. Find the longest common subsequence?
2. Find the longest common substring?
3. Coin change problem?
4. Box stacking problem?
5. Count the number of ways to cover a distance?

React with ❤️ for the detailed answers
5👍5
List of Frontend Project Ideas 💡👨🏻‍💻

Beginner Projects

🔹 Personal Portfolio Website
🔹 Responsive Landing Page
🔹 Simple Calculator
🔹 To-Do List App
🔹 Weather App

Intermediate Projects

🔸 Blog Website
🔸 E-commerce Product Page
🔸 Recipe Finder App
🔸 Interactive Chat App
🔸 Music Player

Advanced Projects

🔺 Social Media Dashboard
🔺 Real-time Chat Application
🔺 Multi-page E-commerce Website
🔺 Dynamic Data Visualization Dashboard

React ❤️ for more
4👍1
Tips for solving leetcode codings interview problems

If input array is sorted then
- Binary search
- Two pointers

If asked for all permutations/subsets then
- Backtracking

If given a tree then
- DFS
- BFS

If given a graph then
- DFS
- BFS

If given a linked list then
- Two pointers

If recursion is banned then
- Stack

If must solve in-place then
- Swap corresponding values
- Store one or more different values in the same pointer

If asked for maximum/minimum subarray/subset/options then
- Dynamic programming

If asked for top/least K items then
- Heap

If asked for common strings then
- Map
- Trie

Else
- Map/Set for O(1) time & O(n) space
- Sort input for O(nlogn) time and O(1) space
👍41
Random Module in Python 👆
5👍1