- 364
- 29 295
LogicNLearn
Приєднався 25 чер 2020
Welcome to LogicNLearn 🎓✨
Your ultimate destination for mastering **Data Structures & Algorithms (DSA)**, solving **LeetCode, GeeksforGeeks**, and **Love Babbar Sheet** problems in **C++**, and exploring exciting **coding challenges**.
👨💻 **What You'll Learn:**
- In-depth explanations of coding solutions
- Step-by-step problem-solving techniques
- Programming tutorials for beginners and pros
- Insights into **C++, Python, Java**, and more
🚀 **Who Should Subscribe?**
If you're a **BTech student**, preparing for **placements**, or passionate about coding, this channel is for you!
💻 Connect with Me:
📂 GitHub: [LEETCODE Solution Repository](github.com/yash88990/LEETCODE_solution-CPP-)
🎥 UA-cam Playlists: [Check them here!](linktr.ee/Yash8899)
📢 Telegram Community: [Join Us](t.me/+40AjHb4NzngwNjM1)
🔔 Subscribe now and level up your coding game with LogicNLearn
Longest Repeating Subsequence | Love Babbar DSA Sheet | C++ Solution | LogicNLearn
In this video, we solve the **Longest Repeating Subsequence** problem from the **Love Babbar DSA Sheet** using **Dynamic Programming** in **C++**.
This problem focuses on finding the length of the longest subsequence in a string where the same character appears more than once but is not necessarily adjacent. We'll cover:
- **Problem explanation** with clear examples.
- **Dynamic Programming solution** with a detailed step-by-step breakdown.
- **C++ implementation** with code explanation.
- **Key concepts**: Dynamic Programming, Subsequence, Recursion, and Memoization.
---
**Playlist Links:**
🎯 **Daily Coding Challenges:** [Click Here](ua-cam.com/play/PLVT6YZEiKnxWwQdT822A7PNTyWD3LE-wJ.html&si=_DJyKFBoKy-D3BWH)
🎯 **LeetCode Solutions:** [Click Here](ua-cam.com/play/PLVT6YZEiKnxXfbVOfyfKwietsYjqLPVpN.html&si=LlHZI6MAtOIuaBQR)
🎯 **Love Babbar Sheets GFG Solutions:** [Click Here](ua-cam.com/play/PLVT6YZEiKnxVRjI9LRFbv8z-_WJQYKh7x.html&si=l6tSrUxqEMyXFkY5)
🎯 **DSA Playlist:** [Click Here](ua-cam.com/play/PLVT6YZEiKnxVRjI9LRFbv8z-_WJQYKh7x.html&si=Lo2axzensF_KKT7Z)
🎯 **GeeksforGeeks Solutions:** [Click Here](ua-cam.com/play/PLVT6YZEiKnxXxiktkBLJ4pafZNaVAjAif.html&si=0bmjwniwxu1P8YS3)
---
**Helpful Links:**
🌟 **GitHub Repository for LeetCode Solutions:** [Click Here](github.com/yash88990/LEETCODE_solution-CPP-)
🌟 **GitHub Repository for GFG Solutions:** [Click Here](github.com/yash88990/GFG-Solution-CPP)
🌟 **UA-cam Channel:** [LogicnLearn](youtube.com/@logicnlearn?si=au3sw7M8nQa16fwc)
🌟 **Linktree for All Resources:** [Click Here](linktr.ee/Yash8899)
🌟 **Telegram Group for Updates:** [Click Here](t.me/+40AjHb4NzngwNjM1)
---
### Hashtags:
#LoveBabbar #DSA #C++ #DynamicProgramming #LongestRepeatingSubsequence #Subsequence #CodingChallenge #LogicnLearn #CompetitiveProgramming #Algorithms #LearnToCode #DataStructures #CodingLife #SoftwareEngineering #GFG #LeetCode #CodingWithCpp
This problem focuses on finding the length of the longest subsequence in a string where the same character appears more than once but is not necessarily adjacent. We'll cover:
- **Problem explanation** with clear examples.
- **Dynamic Programming solution** with a detailed step-by-step breakdown.
- **C++ implementation** with code explanation.
- **Key concepts**: Dynamic Programming, Subsequence, Recursion, and Memoization.
---
**Playlist Links:**
🎯 **Daily Coding Challenges:** [Click Here](ua-cam.com/play/PLVT6YZEiKnxWwQdT822A7PNTyWD3LE-wJ.html&si=_DJyKFBoKy-D3BWH)
🎯 **LeetCode Solutions:** [Click Here](ua-cam.com/play/PLVT6YZEiKnxXfbVOfyfKwietsYjqLPVpN.html&si=LlHZI6MAtOIuaBQR)
🎯 **Love Babbar Sheets GFG Solutions:** [Click Here](ua-cam.com/play/PLVT6YZEiKnxVRjI9LRFbv8z-_WJQYKh7x.html&si=l6tSrUxqEMyXFkY5)
🎯 **DSA Playlist:** [Click Here](ua-cam.com/play/PLVT6YZEiKnxVRjI9LRFbv8z-_WJQYKh7x.html&si=Lo2axzensF_KKT7Z)
🎯 **GeeksforGeeks Solutions:** [Click Here](ua-cam.com/play/PLVT6YZEiKnxXxiktkBLJ4pafZNaVAjAif.html&si=0bmjwniwxu1P8YS3)
---
**Helpful Links:**
🌟 **GitHub Repository for LeetCode Solutions:** [Click Here](github.com/yash88990/LEETCODE_solution-CPP-)
🌟 **GitHub Repository for GFG Solutions:** [Click Here](github.com/yash88990/GFG-Solution-CPP)
🌟 **UA-cam Channel:** [LogicnLearn](youtube.com/@logicnlearn?si=au3sw7M8nQa16fwc)
🌟 **Linktree for All Resources:** [Click Here](linktr.ee/Yash8899)
🌟 **Telegram Group for Updates:** [Click Here](t.me/+40AjHb4NzngwNjM1)
---
### Hashtags:
#LoveBabbar #DSA #C++ #DynamicProgramming #LongestRepeatingSubsequence #Subsequence #CodingChallenge #LogicnLearn #CompetitiveProgramming #Algorithms #LearnToCode #DataStructures #CodingLife #SoftwareEngineering #GFG #LeetCode #CodingWithCpp
Переглядів: 5
Відео
Subsequences of String | Love Babbar DSA Sheet | C++ Solution | LogicnLearn
Переглядів 22 години тому
In this video, we solve the Subsequences of String problem from the Love Babbar DSA Sheet using C . This problem involves generating all possible subsequences of a given string. We'll cover: - Problem explanation with clear examples. - Efficient solution using recursion and backtracking techniques. - C implementation with code explanation. - Key concepts : Recursion, Backtracking, Subsequences,...
Detect Loop in Linked List | GFG POTD | C++ Solution in Hindi | Jan 24, 2025 | LogicNLearn
Переглядів 22 години тому
In this video, we solve GeeksforGeeks Problem of the Day (POTD) Detect Loop in Linked List using an efficient and beginner-friendly approach in C . This problem involves detecting whether a loop exists in a linked list. We'll cover: - Problem explanation with clear examples. - Optimized solution using Floyd’s Cycle Detection Algorithm. - C implementation with step-by-step explanation. - Key con...
802. Find Eventual Safe States | LeetCode 802 | C++ Solution in Hindi| Jan 24, 2025 | LogicNLearn
Переглядів 22 години тому
In this video, we solve LeetCode 802: Find Eventual Safe States using an optimized and beginner-friendly approach in C . This problem involves finding all the nodes in a directed graph that eventually lead to terminal nodes. We'll cover: - Problem explanation with graph visualization. - Topological Sort and DFS-based solution for detecting cycles. - Efficient C implementation with detailed expl...
Find the First Node of Loop in Linked List | GFG POTD | C++ Solution in Hindi | LogicNLearn
Переглядів 52 години тому
In this video, we solve GeeksforGeeks Problem of the Day (POTD) Find the First Node of Loop in Linked List using an efficient and clear approach in C . This problem involves detecting a loop in a linked list and identifying the first node where the loop begins. We'll cover: - Problem explanation with visualization. - Optimized algorithm to detect and find the loop's starting point. - C implemen...
2948. Make Lexicographically Smallest Array by Swapping Elements | LeetCode POTD | C++ | LogicNLearn
Переглядів 142 години тому
In this video, we solve LeetCode Problem of the Day (POTD) 2948: Make Lexicographically Smallest Array by Swapping Elements using an efficient approach in C . This problem involves rearranging an array to achieve the smallest lexicographical order by performing swaps under given constraints. We'll cover: - Problem explanation in simple terms. - Optimized approach to solve the problem step by st...
1267. Count Servers that Communicate | LeetCode Daily Challenge 1267 | LogicnLearn | C++ Solution
Переглядів 207 годин тому
Welcome to LogicnLearn ! In this video, we solve the LeetCode Problem 1267: Count Servers that Communicate , the daily challenge for 23 January 2025 . Learn how to efficiently identify servers that communicate in a grid using C . Topics Covered: - Problem breakdown and understanding the input/output - Optimized approach using row and column counts - Step-by-step implementation in C - Analysis o...
Clone Linked List with Next and Random Pointers | GFG POTD | C++ Solution | LogicnLearn
Переглядів 117 годин тому
Welcome to LogicnLearn ! In this video, we solve the GFG Problem of the Day (POTD) for 23rd January 2025: Clone a Linked List with Next and Random Pointers , using an efficient and intuitive approach in C . Solution Link :- github.com/yash88990/GFG-Solution-CPP/blob/main/Difficulty: Hard/Clone List with Next and Random/clone-list-with-next-and-random.cpp Topics Covered: - Understanding the prob...
Master Dynamic Programming Part 1 | Complete DSA Guide in C++ | LogicnLearn
Переглядів 189 годин тому
Welcome to LogicnLearn ! 🚀 Unlock the power of Dynamic Programming (DP) in this first part of our comprehensive DP series. Learn the basics of DP, its principles, and how to apply it to solve optimization problems efficiently. ✨ What you'll learn in Part 1: - Introduction to Dynamic Programming : What it is and why it's important - Understanding Memoization vs Tabulation - Key steps to solve DP...
1765. Map of Highest Peak | LeetCode Daily Challenge Explained in C++ | LogicNLearn
Переглядів 99 годин тому
Welcome to LogicnLearn ! In this video, we solve LeetCode Problem 1765: Map of Highest Peak , the daily challenge for 22th January 2025 . Learn how to create a height map based on water distribution using C with a step-by-step approach and efficient implementation. Solution LINK :- github.com/yash88990/LEETCODE_solution-CPP- Topics Covered: - Problem analysis and explanation - BFS-based solutio...
Add Numbers Represented by Linked Lists in C++ | GFG POTD Explained | LogicnLearn | GeeksforGeeks
Переглядів 179 годин тому
Welcome to LogicnLearn ! In this video, we solve the GFG Problem of the Day (POTD) for 22th January 2025: Add Numbers Represented by Linked Lists , with an intuitive approach and efficient implementation in C . Problem Link :- www.geeksforgeeks.org/problems/add-two-numbers-represented-by-linked-lists/1 Solution Link:- github.com/yash88990/GFG-Solution-CPP/blob/main/Difficulty: Medium/Add Number...
Master Greedy Algorithms in One Shot | Complete DSA Guide in C++ | LogicnLearn
Переглядів 3512 годин тому
Welcome to LogicnLearn ! 🚀 Understand the power of Greedy Algorithms with this one-shot comprehensive guide! Learn how to approach optimization problems using greedy strategies in C and improve your problem-solving skills for DSA and coding interviews. ✨ What you'll learn: - Introduction to Greedy Algorithms and their principles - Step-by-step approach to solving problems using the greedy metho...
Linked List Group Reverse | GFG POTD Solution | C++ Explanation | LogicNLearn
Переглядів 512 годин тому
In today's GeeksforGeeks Problem of the Day (POTD), we solve the Linked List Group Reverse problem step by step using C . 🚀 🌟 What you'll learn : - How to reverse a linked list in groups of a given size. - Efficient approach to handle multiple node reversals using iteration. - Explanation of key concepts like linked list traversal and node manipulation. - Clean, optimized C code with detailed e...
2017. Grid Game | LeetCode Daily Challenge | LogicnLearn
Переглядів 1012 годин тому
Welcome to another daily coding challenge! 🚀 In this video, we solve the Grid Game problem from LeetCode step by step using C . 🌟 What you'll learn : - Understanding the problem statement and constraints. - Optimized approach to minimize the maximum score for the second robot. - Detailed explanation of prefix sums for efficient computation. - Clean and well-commented C code implementation. 📌 To...
Master Tries in One Shot | Complete DSA Guide in C++ | LogicnLearn
Переглядів 1914 годин тому
Welcome to LogicnLearn ! 🚀 Dive into the world of Tries , an advanced data structure widely used for efficient searching and solving complex problems. This one-shot video will help you master the Trie data structure and understand its applications in DSA and coding interviews . ✨ What you'll learn: - Introduction to Tries and their structure - Key operations: Insertion, Search, and Deletion - A...
GFG POTD | Merge Two Sorted Linked Lists | Easy Explanation in C++ | LogicnLearn
Переглядів 1614 годин тому
GFG POTD | Merge Two Sorted Linked Lists | Easy Explanation in C | LogicnLearn
LeetCode Daily Challenge 2661 | First Completely Painted Row or Column | C++ Solution | LogicnLearn
Переглядів 1514 годин тому
LeetCode Daily Challenge 2661 | First Completely Painted Row or Column | C Solution | LogicnLearn
Master HashMaps in One Shot | Complete DSA Guide in C++ | LogicnLearn
Переглядів 2316 годин тому
Master HashMaps in One Shot | Complete DSA Guide in C | LogicnLearn
Master Heaps in One Shot | Complete DSA Guide in C++ | LogicnLearn
Переглядів 3219 годин тому
Master Heaps in One Shot | Complete DSA Guide in C | LogicnLearn
Master C++ STL in One Shot | Complete Guide for DSA & Competitive Programming | LogicnLearn
Переглядів 1421 годину тому
Master C STL in One Shot | Complete Guide for DSA & Competitive Programming | LogicnLearn
Graphs Explained in One Shot | Full DSA Tutorial in C++ | #LogicnLearn
Переглядів 26День тому
Graphs Explained in One Shot | Full DSA Tutorial in C | #LogicnLearn
Binary Tree & BST Explained in One Shot |One Shot DSA Tutorial in C++ | LogicnLearn
Переглядів 46День тому
Binary Tree & BST Explained in One Shot |One Shot DSA Tutorial in C | LogicnLearn
1-Hour Flutter Challenge: Build and Deploy a Translator App Today! | LogicNLearn
Переглядів 69День тому
1-Hour Flutter Challenge: Build and Deploy a Translator App Today! | LogicNLearn
LeetCode Problem of the Day | 2657: Find the Prefix Common Array of Two Arrays | In C++| LogicNLearn
Переглядів 17День тому
LeetCode Problem of the Day | 2657: Find the Prefix Common Array of Two Arrays | In C | LogicNLearn
GeeksforGeeks Problem of the Day | Equilibrium Point | C++ Solution Explained | LogicNLearn
Переглядів 10День тому
GeeksforGeeks Problem of the Day | Equilibrium Point | C Solution Explained | LogicNLearn
Longest Palindromic Substring | Love Babbar DSA Sheet | Coding Ninjas Solution in C++ | LogicnLearn
Переглядів 10День тому
Longest Palindromic Substring | Love Babbar DSA Sheet | Coding Ninjas Solution in C | LogicnLearn
Count and Say Sequence | Love Babbar DSA Sheet | Coding Ninjas Solution in C++ | LogicnLearn
Переглядів 5День тому
Count and Say Sequence | Love Babbar DSA Sheet | Coding Ninjas Solution in C | LogicnLearn
Shuffle Two Strings | Love Babbar DSA Sheet | Coding Ninjas Solution in C++ | LogicnLearn
Переглядів 5День тому
Shuffle Two Strings | Love Babbar DSA Sheet | Coding Ninjas Solution in C | LogicnLearn
Check if One String is a Rotation of Another | Love Babbar DSA Sheet | Coding Ninjas | LogicnLearn
Переглядів 4День тому
Check if One String is a Rotation of Another | Love Babbar DSA Sheet | Coding Ninjas | LogicnLearn
Duplicate Characters in a String | Love Babbar DSA Sheet | Coding Ninjas Solution in C++|LogicnLearn
Переглядів 4День тому
Duplicate Characters in a String | Love Babbar DSA Sheet | Coding Ninjas Solution in C |LogicnLearn
Bhai kya isme apne 1D 2D dono cover kiya h
Java language❤❤
Sir Java language ❤❤❤
Best video hai ❤❤❤
Ok... That didn't help
Please provide time slap please
Thank you for video quality
nice music
brother your teaching style is great , some tips for improvement : 1) try to remove noice from a video editing tools , 2) improve thumbnails for gain highest reach 3) focus on a dsa because its more req in industry or placements , others content are very long
Thanks for the feedback! I'll definitely try to improve the video quality and focus more on DSA.
Hi brother Have you planned the lecture of heaps?
Uploaded
Thank you bhaiya aap one shot provide Kar rhe ho ❤ but video quality 1080p ho skti hai kya?
Keep uploading videos you will definitely grow soon 🔜
Thank you for the support! I'll keep trying my best.
brother kya aap love babbar ka DSA ka course access kiye ho, ya phir free wala code ko padhake ye sab upload kar rahe ho
Is there a possibility to add some subtitles to the video, because for me it's hard to understand the speaker?!
Good stuff
Glad you liked it! 👍
where is this dsa sheet presne ? means how can we access it
Check description
Thank you so much sir please fully complete this playlist i am rigorously following your all playlists
I'll try my best to complete this playlist as soon as possible!
How much lectures are remaining ?
It's completed. Now for practice we started 3 new playlists. you can checkout
I couldn't understood hashing that much @@logicnlearn
What are some best resources to start practice and maintain consistency as a beginner and after that for competitive programming please bhaiya guide...
???
Start solving leetcode or gfg problem, or you can follow love babber DSA sheet playlist on my channel for practice questions
Great 🎉
Kitne lectures or remaining hai ? Kya greedy dynamic hashing sb hoga ?
Around 15 to 20 lectures are left, covering all topics like Greedy, Dynamic Programming, Hashing, and more in detail with practice questions.
Is this playlist enough to master DSA in c++ ?@@logicnlearn
@@laks234 yes but you have to practice more by own ...
Nice video sir
sir which extension you use in vs code that give use syntax error before run.
error lens
Vs code setting extensions make a video on that sir .
Sure
How long is the course sir ??
I'll upload all lectures till 31 dec
Such a great content brdr 🙏
Such a great content brdr 🙏
Such a great content brdr 🙏🙏
Thank you so much, bro! Finally understood recursion
I'm glad you found it helpful! 👍
Can’t believe I finally get recursion, thanks to this video!
I'm glad it helped! 😊
thanks please upload more.
sure
Same issue
In new MacBook it's a common issue. Don't worry it's will fixed automatically. Just open and close many times ...
I'm really facing this
Just one close mac 10 to 15 times with two hand and it will get fixed
Same issue I bought this on last Friday and today is Friday what would be the problem all of sudden it was happened Will it get fixed ?
Yeah it will fixed automatically don't worry
To all who are faceing this issue, Please open and close your mac for 10-20 times continuousely. It gets automatically fixed
After doing it, Will it happen again
Mine works like a charm! Thank you.
bhai hinge se related ek aur problem hota ha aap sab check karna black wallpaper rakho full aur check for green line. mere case me meko bottom right corner me green line a rahi ha service center walo ne replace to nahi kiya par bola ye hinge tight ka issue ha aur online hi liya tha mene bhi M2 abhi aur esa kuch ho to lado social media pe twitter job sheet me clear likhwalo service center se ye issue unko mila aur file replacement demand karo seller se agar jaldi notice hua to me wahi lad raha hu dekhte kya hota srif hinge issue ha to 80-100 bar open close karo vo solve hojata ha par green line nahi
My mac m1 is also facing the same issue
Use it normally it will fixed automatically
Facing same issue bro, really worried. Service centre le jau?
Yes go to authorised service canter and they will fix it whithin half and hour and for free of cost .
Gladly the service centre guys fixed it. Thanks
Facing same problem in just two days
Ch*d gaye guru 😰
MacBook m2 ka hinge kse thik hua bro? Any solution
bhai mere saath bhi yahi hua hai kal hi liya hai M2 mbAir, meri gand fatt gayi hai BC.... please solution mile to muzhe bhi bata dena bhai
I am facing same issue mac booook m2 "3 days old"
Are u pruchase your macbook in flipkart bbd sale bcz i am facing this same problem in my macbook air m2
I purchased from Flipkart same issue
I have been using a transparent case for my mcbook air for past 2 months and I just removed it after observing that it is giving issues closing
same thing just happened to me. did you find a way to make it go back to normal?
@@huemals it automatically fixed itself after few days of using it without the case
bhai kl hi lia h mene m2 aaj ye same ho rha mere sath kese shi hoga
bhai mere saath bhi yahi hua hai kal hi liya hai meri gand fatt gayi hai BC.... please solution mile to muzhe bhi bata dena bhai
Ha Bhai hamara bhi ho rha haii kal liya hu me bhi kya kru bro ??😢😢
@@Sandipsvisible bhai shi hua tumhara 🥲
@@AbhishekKumar-mt7wi ha dic ho gya
@@Sandipsvisible kese thik hua bhai
Facing the same issue just after two days on my air M2
Did it fix?
@@anuragband7277 shi hua kya bhai…?
bhai same mere sath ho rha apka thik hua kya
Same issue 2 days after in M2!!
lol same
I think all with mac m3 are facing this same problem, I even got the replacement
My macbook air m3 has the same issue.. but people with m2 are also facing this. How is your replacement unit? I guess it's normal for new unibody macs to be tight at first
bro did you purchased it from online or offline? how are they giving you replacement?
@@TheTraderGang apple online store
My m1 after 2 days showing same problem 😭😭
@@adarshBharadwaj2312 don't worry my hinges are getting loose eventually ✨️ just enjoy your mac
sir please increase volume of your voice
Sure 👍
Really helpful bro
Bhai ye flipkart se purchase Kiya tha kya?