- 87
- 11 805
EXAM RIDER (PEC ,chd)
เข้าร่วมเมื่อ 24 มิ.ย. 2021
Hello everyone, HAR HAR MAHADEV.
Myself Sanshray Mittu, I am right now 1st year student in PEC ,chandigarh.
My few results are as follows:
10th BOARDS = 94.6%
12th BOARDS = 95.4%
JEE MAIN(AIR/PERCENTILE)= 18591/97.953
JEE ADVANCE RANK = 18566
So , lets come together and study at our full potential.
Myself Sanshray Mittu, I am right now 1st year student in PEC ,chandigarh.
My few results are as follows:
10th BOARDS = 94.6%
12th BOARDS = 95.4%
JEE MAIN(AIR/PERCENTILE)= 18591/97.953
JEE ADVANCE RANK = 18566
So , lets come together and study at our full potential.
How to Ace Leet code || LEETCODE || CODING || MOTIVATION #leetcode #education #computerscience
Struggling with LeetCode? Don't worry-I've got you covered! In this video, I'll share the best strategies to crack coding problems, improve problem-solving skills, and stay motivated on your journey to mastering LeetCode. 🚀
🔹 How to practice effectively 📚
🔹 Best problem-solving techniques 🧠
🔹 Staying consistent & motivated 🔥
🔹 Tips from a 450+ questions solver ✅
If you're serious about leveling up your coding skills, this video is for YOU! 💡
💬 Drop a comment with your LeetCode struggles, and let's solve them together!
🔥 Don't forget to LIKE, SHARE & SUBSCRIBE for more coding content!
#LeetCode #Coding #Programming #Motivation #SoftwareEngineering #CS #CodeNewbie #Tech #InterviewPrep #Education #ComputerScience #LearnToCode #100DaysOfCode
🔹 How to practice effectively 📚
🔹 Best problem-solving techniques 🧠
🔹 Staying consistent & motivated 🔥
🔹 Tips from a 450+ questions solver ✅
If you're serious about leveling up your coding skills, this video is for YOU! 💡
💬 Drop a comment with your LeetCode struggles, and let's solve them together!
🔥 Don't forget to LIKE, SHARE & SUBSCRIBE for more coding content!
#LeetCode #Coding #Programming #Motivation #SoftwareEngineering #CS #CodeNewbie #Tech #InterviewPrep #Education #ComputerScience #LearnToCode #100DaysOfCode
มุมมอง: 17
วีดีโอ
3Sum || LEETCODE || C++ || TOP INTERVIEW 150 #leetcode #coding #algorithmdevelopment
มุมมอง 64 ชั่วโมงที่ผ่านมา
In this video, we solve the 3Sum problem from LeetCode's Top Interview 150 using C . The problem requires us to find all unique triplets in an array that sum to zero. We'll go through an optimized approach using sorting and two-pointer technique to achieve an efficient solution. Watch till the end for a clear explanation and coding implementation! 🚀 📌 Topics Covered: ✅ Problem Explanation ✅ Opt...
Container With Most Water || LEETCODE || TOP INTERVIEW 150 || C++ #leetcode #coding #education
มุมมอง 117 ชั่วโมงที่ผ่านมา
Description: Solve the Container With Most Water problem like a pro! 🚀 This is a must-know question from LeetCode Top Interview 150. Watch this video to learn the optimal two-pointer approach with an easy-to-understand C solution. 💡📌 🔹 Concept Explained 🔹 Efficient Approach 🔹 Code Walkthrough in C Don't forget to like, comment, and subscribe for more coding content! 🔥 Hashtags: #LeetCode #Codin...
Two Sum II -Input Array Is Sorted || LEETCODE || TOP INTERVIEW 150 || C++ #leetcode #coding
มุมมอง 909 ชั่วโมงที่ผ่านมา
Struggling with Two Sum II on LeetCode? 🚀 In this video, I’ll break down the optimized approach for solving this classic TOP INTERVIEW 150 problem using C ! 🏆 Learn how to efficiently find two numbers that sum up to the target in a sorted array using the two-pointer technique! 🔥 📌 Don’t forget to like, subscribe & hit the bell icon for more coding solutions! #LeetCode #Coding #DSA #TwoSum #C #I...
DSA vs Web-dev || Coding || DSA || WEB DEVELOPMENT #computerscience #coding #education
มุมมอง 46114 ชั่วโมงที่ผ่านมา
DSA vs Web Dev 💻🔥 | Which One Should You Choose? Struggling to decide between DSA and Web Development? 🤔 In this video, we break down the pros, cons, and career opportunities for both! 🚀 💡 Which one is better for your coding journey? Watch now and find out! #DSA #WebDevelopment #Coding #ComputerScience #Programming #Tech #Education #LeetCode #SoftwareEngineering
Is Subsequence || LEETCODE || TOP INTERVIEW 150 || C++ #leetcode #coding #computerscience
มุมมอง 1016 ชั่วโมงที่ผ่านมา
Learn how to solve the "Is Subsequence" problem on LeetCode with a clear and easy-to-understand C implementation. This video is perfect for beginners and experienced programmers alike. We'll go step-by-step through the logic and code. Get ready to level up your coding skills! #leetcode #coding #computerscience #cpp #programming #algorithms #datastructures #interviews #interviewprep #topintervie...
Valid Palindrome | LEETCODE | TOP INTERVIEW 150 | C++ #leetcode #education #coding #datastructure
มุมมอง 3519 ชั่วโมงที่ผ่านมา
In this video, we solve the "Valid Palindrome" problem from LeetCode's Top Interview 150 using C . This is a commonly asked question in coding interviews, and we use the two-pointer technique to efficiently check if a given string is a valid palindrome while ignoring non-alphanumeric characters. 🔹 Problem Statement: Given a string `s`, determine if it is a valid palindrome by considering only a...
Text Justification | LEETCODE | TOP INTERVIEW 150 | C++ #leetcode #education #coding #algorithms
มุมมอง 2521 ชั่วโมงที่ผ่านมา
This video explains the "Text Justification" problem from LeetCode’s Top Interview 150. It's a commonly asked string manipulation problem in FAANG and top tech company interviews. The solution involves greedy algorithms and string formatting techniques to ensure words are justified properly. In this video, I break down the Text Justification problem with: ✅ Problem Explanation - Understanding c...
Find the index of the first occurrence in a string | LEETCODE | TOP INTERVIEW 150 | C++
มุมมอง 54วันที่ผ่านมา
🚀 LeetCode Problem - "Find the Index of the First Occurrence in a String" This is a popular coding interview question from LeetCode’s Top Interview 150. Given two strings, haystack and needle, the goal is to find the index of the first occurrence of needle in haystack. If needle is not found, return -1. This problem is a classic string searching question and can be solved using Brute Force, KMP...
ZigZag Conversion || LEETCODE || TOP INTERVIEW 150
มุมมอง 65วันที่ผ่านมา
In this video, we'll tackle the classic ZigZag Conversion problem from LeetCode, a frequent question in top tech interviews. We'll break down the problem, explore different approaches, and implement an efficient solution in Python. Whether you're preparing for coding interviews or simply want to improve your problem-solving skills, this video is for you! #ZigZagConversion #LeetCode #CodingChall...
Reverse Words in a String || LEETCODE || TOP INTERVIEW 150#datastructure #leetcode #education
มุมมอง 22วันที่ผ่านมา
🚀 Struggling with coding interviews? Crack one of the most popular LeetCode problems: Reverse Words in a String! 🧠 Dive into this solution breakdown, perfect for acing the Top Interview 150 series. Whether you're a beginner or prepping for the next big opportunity, this video has got you covered! 💻🔥 #LeetCode #CodingInterview #TopInterview150 #Programming #ReverseWords #StringManipulation #Tech...
Longest Common Prefix || LEETCODE || TOP INTERVIEW 150 #datastructure #leetcode
มุมมอง 16วันที่ผ่านมา
In this video, we solve the "Longest Common Prefix" problem from LeetCode, a must-know question from the Top Interview 150 list. This problem is essential for mastering string manipulation and sharpening your data structure and algorithm skills. Watch till the end for a step-by-step explanation and coding approach to ace this problem in your interviews! 🚀 #LongestCommonPrefix #LeetCodeSolutions...
Length of last word || LEETCODE || TOP INTERVIEW 150
มุมมอง 1014 วันที่ผ่านมา
In this video, I tackle one of the most popular challenges on LeetCode, where we determine the length of the last word in a given string. This problem is crucial for coding interviews and is part of the "Top Interview Questions" series. I break down the approach step by step, explaining how to solve it efficiently using Python. Perfect for those preparing for technical interviews or improving t...
Integer to Roman || LEETCODE || TOP INTERVIEW 150
มุมมอง 8714 วันที่ผ่านมา
Integer to Roman || LEETCODE || TOP INTERVIEW 150
Roman to Integer || LEETCODE || TOP INTERVIEW 150
มุมมอง 12314 วันที่ผ่านมา
Roman to Integer || LEETCODE || TOP INTERVIEW 150
Trapping Rain Water || LEETCODE || TOP INTERVIEW 150
มุมมอง 1314 วันที่ผ่านมา
Trapping Rain Water || LEETCODE || TOP INTERVIEW 150
Candy || LEETCODE || TOP INTERVIEW 150
มุมมอง 1014 วันที่ผ่านมา
Candy || LEETCODE || TOP INTERVIEW 150
Gas Stations || LEETCODE || TOP INTERVIEW 150
มุมมอง 2514 วันที่ผ่านมา
Gas Stations || LEETCODE || TOP INTERVIEW 150
Product of Array Except Self || LEETCODE || TOP INTERVIEW 150
มุมมอง 2014 วันที่ผ่านมา
Product of Array Except Self || LEETCODE || TOP INTERVIEW 150
Insert Delete GetRandom O(1) || LEETCODE || TOP INTERVIEW 150
มุมมอง 6321 วันที่ผ่านมา
Insert Delete GetRandom O(1) || LEETCODE || TOP INTERVIEW 150
H Index || LEETCODE || TOP INTERVIEW 150
มุมมอง 2821 วันที่ผ่านมา
H Index || LEETCODE || TOP INTERVIEW 150
Jump Games 2 || LEETCODE || TOPN INTERVIEW 150
มุมมอง 1921 วันที่ผ่านมา
Jump Games 2 || LEETCODE || TOPN INTERVIEW 150
Jump Game ||LEETCODE || TOP INTERVIEW QUESTIONS
มุมมอง 2721 วันที่ผ่านมา
Jump Game ||LEETCODE || TOP INTERVIEW QUESTIONS
Best Time To Buy And Sell Stocks 2 || LEETCODE || TOP INTERVIEW 150
มุมมอง 1321 วันที่ผ่านมา
Best Time To Buy And Sell Stocks 2 || LEETCODE || TOP INTERVIEW 150
Best time to buy and sell stock || LEETCODE || TOP INTERVIEW 150
มุมมอง 2621 วันที่ผ่านมา
Best time to buy and sell stock || LEETCODE || TOP INTERVIEW 150
Rotate Array by K || LEETCODE || TOP INTERVIEW 150
มุมมอง 1428 วันที่ผ่านมา
Rotate Array by K || LEETCODE || TOP INTERVIEW 150
Majority Elements || LEETCODE || DSA || TOP INTERVIEW 150
มุมมอง 1228 วันที่ผ่านมา
Majority Elements || LEETCODE || DSA || TOP INTERVIEW 150
Remove duplicates from a sorted array II
มุมมอง 2328 วันที่ผ่านมา
Remove duplicates from a sorted array II
Remove Duplicates from sorted array || LEETCODE || TOP INTERVIEW 150
มุมมอง 26หลายเดือนก่อน
Remove Duplicates from sorted array || LEETCODE || TOP INTERVIEW 150
nice POV
Glad you liked it 👍
bro mene video dekhne ki koshish ki but audio bohot bekar hai sun ne me dikkat aarahi thi
Ok bro got your point I will try to improve my mic quality in the upcoming vedios..... Thanks for your crucial view points
Nice work bud 📖💫
Great
DSA and Web development is always a hot topic
Hello sir I'm graphic designer and I can create thumbnails for you...😊
Great 👍
Appreciate it 🙌
Great 👍🏻
NIT Rourkela civil branch or IIIT Jabalpur CSE branch who is best according to you....
IIIT jabalpur CSE anytime bro👍
Absolutely true 💯
Completely true❤
Koi bata skta h kya ki iska permanent campus kb tk complete hoga???
Pata nhi Bhai abhi to sbit me hi hai galti kar di isko top priority deke 🤦🥺🥺😢 pata nhi kaise ye upar pahuch gayi achaa bhalaa iiit ranchi milaa tha dhoni se miltaa jake sab barbaad
@@sumitshakya332 admission le lia?
@@sumitshakya332mai bhi😢
@@akkkkkk8842ooh 😧
@@akkkkkk8842 bhai fees bhar di
Is it worth joining it in2023 I'm from mp and I'm also getting best state college of mp
mujhe iiit sonepat mil gaya hai .....can anyone tell which hostel is better, SBIT or CoHo??
Bhaii to fees kar di submit
@@sumitshakya332bhai aapse contact ho skta h kya??
@@sumitshakya332 abhi karna hai ...i wanna know about hostel ..do you know?
@@Random_L33kuch pta chala??
@@Random_L33 hm bhai 2 hostel coho wala better hai market hai thoda sa udhaar unohne mere pass photo bheje hai jab maine coho walo ka mail kiyaa hai 1 room me 3 rahenge bhI instA chalate ho kyaa Id sumitshakya822
Bhaiya college me uniform h ya fir casuals allowed h?
I guess casuals allowed hai
Hy
Sonipat hi mila h tumhe?
Haa uniform hai
Hello sir My sister got placed in IIIT Sonepat Haryana, for PHD Please tell me how it is in terms of placement ? Please its urgent
Tqq
iiit sonepat or iiit vadodara diu
Bhaiya quora pe fake reviews hain iiit sonepat ko log superior bolrhe hain iiit varodra se 😅
😂😂let them do it
my rank is 20213 can i get ece in iiitdmj in josaa or csab
Congo it's really good
Bhai keise admission Lete Hai? Kya Kya Karna padta h?
@@MiniMilitiaPlay jee mains exam Dena hota h
I can clarify that every word from this man's mouth is true...
++
Your branch in pec chandigarh
Ece bro
Sir muje coding krni hai or acha placement lena h to ky IIIT sonepat bilkul b worth it ni hai ??
Na bhai mat jaio
@@Exam_Rider bhaiya mnnit allahabad ke chemical ko iiit sonepat ke cs se uper rakh do na jossa m Plzz tell
@@trollkid5892 yes
@@Exam_Rider iiit kancepuram ka 5 year wala cse course kaisa h
Thanku sir very helpfull video
Sir mereko josaa ke 6th round mein seat mili thi usi time per meine seat acceptance fees nd PaF pay kar diya tha to usi time ek seat acceptance letter aayi thi but csab 2nd round mein meri seat upgrade hui in the same college to mereko josaa 6th round mein jo seat acceptance letter mili thi wahi lekar jaana hoga na? Qki koi new seat acceptance letter nhi aayi hai a bit confused again, hope u reply as soon as possible cuz reporting date hai aaaj se
Hm agar csab me koi letter nahi milli to josaa wali chalegi but meri bhi csab me upgrade nahi hui but still csab me letter to ai hai
aa gya result
Ya just after we ended🤣
@@Exam_Rider right sir
@@Exam_Rider luckily my branch got upgraded to cse ab to sirf physical reporting karni hogi na sir qki sab verified dikha rha csab ke website per willingness, payment aur documents sab completed show kar rhe
@@ughhh5745 congo for your upgradation and ya ab physical reporting karni hai apko go to your respective college site and check it their . Do subscribe for further updates. Best of luck for future
@@Exam_Rider suree nd thanks
Bhaiya abhi iiit sonepat ke hostel kaha hai aur kaise hai?
I have not seen the hostel but they are out of campus bus karke Jana hoga campus shayad 1-2km door hai but not sure
Do subscribe for further updates
@@Exam_Rider aap jitna jldi ho ske kuch update dijiye is baare main Hostels ka review krke daal dijiye channel pr.
@@SumitYadav-ot4uu I will try but can't assure you
IIIt vadodara CS vs IIIt sonepat cs????
Btao bhaiya
I would suggest iiit vadodara cs
@@Exam_Rider and dtu electrical bhaiya kuch samaj mein nhi aa raha 😓
@@NeerajKumar-zq8or is it ece or ee?
@@Exam_Rider ee
sir i. have so many confusion please help me i got sonepat it in csab round 1 what should i do i have so many question can i contact you sir please help me
I got IIIT Sonepat in csab 1 too
You may ask your doubts here as it would be beneficial for other students also
@@West-Tiwan aap jane wale ho ? Me confused hu kya karu
@@rudrapatel7413 maine baat ki senior and staff se , abhi wo Stanford international school me hostel le rakhe hai but new 1st year ke liye dusre hostel honga Jo wo apni website pe 3-4 ko update karenge,4th year Wale bhi next 6 months me sbit me shift ho jayenge ,Stanford international school is 2.5 km from sbit and bus facility is provided (hostel looks good,just like IIT Delhi technopark hostel), placements are not updated on their site because since 2019 they they are doing placement on their own (before 2019 nit helped in placement) ,i don't have any other college above it in csab list so i can't change it but if you can go for IIIT Sri City then please do
@@West-Tiwan are same issue with me I also can’t change , I can easily get Sri city but I put Sonepat above them , what will happen to our placement than ?
Sir according to placements and academics it is very good iske growth bahut badiya Hein aur coding culture is excellent . If we leave campus . And that is not a big worry I think within 3 or 4 months it will shift to good temporary campus . I say it's very excellent
Which temporary campus?
@@SumitYadav-ot4uu there is an eoi that it will shift soon
@@lalithsaireddygangu6625 share the source if you have one i study here and the future of this college (campus wise) don't seem any good
Sir Iska campus SBIT me kyu shift Kiya And isme kya problems aa rhi hai students ko
Har institute ka ek time limit hota hai agar uska permanent campus nahi hai , so uska time limit khatam ho gia tha islye vo SBIT me shift ho gia. According to me infra is not good rest you check it once . Do subscribe for more updates.
Sir when I am registering in CSAB councelling its writing that you are not eligible for CSAB councelling 2022
Wait let me check
@@Exam_Rider please help me 🙏🙏😓😔😥
@@ashwani_kumar bro it's working , you may restart you pc or phone or try with any other device
@@ashwani_kumar if you want more info you may subscribe for more videos
@@Exam_Rider I tried in other device also but its showing the same
Where is vacant
They might display it anytime soon.
Bro there is know option that vacant seats how to see vacant seat
@@Exam_Rider thanks bro
Bro i got 80k crl and obc 23k can I get any iiit ece
@@1MTUTORS its a bit tough but try it in CSAB , best of luck.
I also got iiit sonepat should I change becaus right now I am in jUET guna
I recommend you to participate in csab and get something better, but changing iiit sonepat is up to you depends upon many factors
@@Exam_Rider sir on basis of degree private (juet guna) or public private degree(iiit sonepat) which is better that help me in future
@@vickeymadhukar6312 See, public private would be better but i request you to visit sonepat once then it would be easier for you to take your disicion.and you can also come in live stream and ask your question at 10AM.
Sir which will be better between Sonepat and vadodara
@@sudhanshuranjan3730I my opinion vadodara
I got iiit sonepat in jossa. Should I change in csab round?...
I recommend you to visit it once and don't rely on my single opinion
@@Exam_Rider very far from my house....give your contact no. I want to discuss because I got that college....
@@shardulsinghrathore5707 You can take your any doubt here , it would also be beneficial for other students also.
Sir iiit Guwahati me OBC NCL se zero vacant seat hai iska mtlb ab isme nhi apply kr skte kya
@@sudhanshuranjan3730 you check it in the list during choice filling.
Damn🔥⚡
👍🏻
Bhaiya iiit sonepat ka new campus sach m sbit m hai kya Please reply 🥺🥺🥺
Yes bro
Excellent job.
Bhaiya confuse hu m bht
Bro jo points bataye hai unhe follow karke take the decision and fir bhi na ho to bata ki kaha confusion aa rahi hai
@@Exam_Rider m aapse kha connect ho skti hu kya
Kyuki kuch smjh nhi aa rha h yr sirf depressing thought aa rhe
@@mahakporwal106 insta par sanshray_mittu is my ID you cab talk there
Bhai package kitne ka lga
🤣🤣🤣
Very helpful.
Informative ❤
Bhai saach mein gya tha?
Yes kal gia tha 12.30 ki shift me
@@Exam_Rider I will call tom
✌🤩
Thank you for updating🙂🙂
Your welcome
Keep it up mittu bhai 🔥🔥🔥
Thanks brother
Bhai counseling after jee per video's bna
Ok I will definitely upload