Stop Watching Tutorials, Build a Real AI System Most students learn Machine Learning by predicting student marks or house prices. But the biggest question recruiters ask is: “Can you…
Mahesh Verma
Mahesh Verma
I have been working for 10 years in software developing field. I have designed and developed applications using C#, SQL Server, Web API, AngularJS, Angular, React, Python etc. I love to do work with Python, Machine Learning and to learn all the new technologies also with the expertise to grasp new concepts quickly and utilize the same in a productive manner.
-
Machine Learning ProjectsProjects
-
ArticleData Structure
Palindrome Linked List (LeetCode 234) – Best Interview Approach in Python
by Mahesh Vermaby Mahesh VermaThe “Mirror” Interview Challenge Imagine you are in a technical interview. The interviewer asks: “How do you check if a Singly Linked List reads the same forwards and backwards?” Your…
-
ArticleData Structure
Remove Nth Node From End of List (LeetCode 19): The Optimized One-Pass Solution
by Mahesh Vermaby Mahesh VermaIn our previous article, we learned how to find the Nth node from the back. But in technical interviews at companies like Amazon, Google, or TCS, the question usually goes…
-
ArticleData Structure
Find Nth Node from the End of a Linked List in Python in Single Traverse
by Mahesh Vermaby Mahesh VermaIn our previous chapters, we mastered moving forward through a Linked List. But what happens when a problem asks you to count from the back? Since a Singly Linked List…
-
ArticlePython
Build an AI Personal Saving Advisor in Python (Streamlit Project)
by Mahesh Vermaby Mahesh VermaStop Learning, Build This PRO App Most students tell me: “Mahesh Sir, I know how to write a loop, but I don’t know how to build a software.” The difference…
-
ArticleData Structure
Find the Start of a Linked List Cycle in Python | Floyd’s Cycle-Finding Algorithm | LeetCode 142
by Mahesh Vermaby Mahesh VermaIn the previous challenge, we learned how to tell if we were stuck in a loop. But in LeetCode 142 (Linked List Cycle II), simply knowing you’re in a circle…
-
ArticlePython
Detect a Cycle in a Linked List in Python | Floyd’s Cycle-Finding Algorithm | LeetCode 141
by Mahesh Vermaby Mahesh VermaAfter mastering how to find the middle of a list, the next challenge is identifying if a list is “broken.” In a normal Linked List, you eventually hit None. But…
-
ArticlePython
Build a Smart Expense Tracker using Linked List in Python | DSA Project
by Mahesh Vermaby Mahesh VermaStop Learning Linked List, Start Building a Real Project Have you ever completed multiple videos on Linked List—like insertion, deletion, traversal, searching, reversing—and still wondered: “Where do we actually use…
-
ArticlePython
Build a Smart Expense Manager in Python (Streamlit Project)
by Mahesh Vermaby Mahesh VermaStop Learning, Build This PRO App in 60 Minutes Have you ever finished a Python course, learned how to write loops and functions, but still felt stuck when asked to…
-
ArticlePython Programs
Find Middle of Linked List in Python (Step-by-Step) | Fast & Slow Pointer Trick | LeetCode 876
by Mahesh Vermaby Mahesh VermaFinding the middle of a Linked List is one of the most important and frequently asked interview questions. It is also asked on LeetCode Problem 876 – Middle of the…