Sab acche se chamak rha hai bhaiyya, dsa karne me ab maza aa rha hai🔥🔥 Ps. Me codes python me implement kar raha hu(want to pursue career in aiml) Aap itna easy kardete ho concept ko, language ka barrier hi nahi rehta, Tysm❤
1:04:44 The time and space complexity actually for "Search element" not "Max Sum". For "Max Sum", the worst and best both time complexity is O(row*col)
Thank you bhaiya itni deeply knowledge dene ke liye maine 2d array bhut jagah se pdha tha but sab seedha matrix btake skip kra dete h address vgera ke part ko ..Thanks 😍
Thank you sir😊. Had to skip some classes because of class syllabus doesn't match with playlist. But completed this at day 14. Resume from lec 24 after 2D array will be completed.
Bhaiya last question ka tc hoga o(row*col) because we are traversing each row and swapping them and for sc o(1) because we are just modifying the matrix not using any extra space 😊
@@colabbro7789 haa bro I too trying but I am in the beginning for both coding and language .so that's why I am not getting that much.absoluetly learning a language is beneficial .
Get ready to learn in Depth Knowledge of 2D Arrays, Baaki maja aaya aapko kuch, aur kya new seekha? Next class mein Column Major Order ko padenge
Good Morning Bhaiya
Thank you bhaiya for give us this type of content
Chamak gya bhaiya
Yes ready thanks ❤
Sab acche se chamak rha hai bhaiyya, dsa karne me ab maza aa rha hai🔥🔥
Ps. Me codes python me implement kar raha hu(want to pursue career in aiml)
Aap itna easy kardete ho concept ko, language ka barrier hi nahi rehta, Tysm❤
Good morning bhaiya
Aapne 6:00AM o'clock me jagne ki aadat bana diye bhaiya meri.
thank you 🙏
Live seeing the miracle of consistency from rank 1 magician
The way you teach the approach step by step is incredible❣
Bhaiya aap bhot depth me samja rhe ho thanks a lot ❤❤❤❤
Welcome
Bhaiya apki video se new concept sikhne ko milta hai
Bhaiya maine kafi teacher se padha hu 2d array par aapke jaisa koi depth me nhi btaya 😊❤.
Completed Lecture 31, loved the way you teach and not going to break my consistancy.
1:04:44 The time and space complexity actually for "Search element" not "Max Sum". For "Max Sum", the worst and best both time complexity is O(row*col)
Thanks for correcting
@@CoderArmy9 You are welcome bhaiya ❤❤
How did you find the time complexity... I have confusion😢
Thank you bhaiya itni deeply knowledge dene ke liye maine 2d array bhut jagah se pdha tha but sab seedha matrix btake skip kra dete h address vgera ke part ko ..Thanks 😍
Love you big brother continuing this series in form of revision loving the content absolutely best
Thank you sir😊. Had to skip some classes because of class syllabus doesn't match with playlist. But completed this at day 14. Resume from lec 24 after 2D array will be completed.
Kya baat hai sir 2cr offer reject karne ke baad ek accha profession banne ki tayari
Good morning Bhaiya
41/180 with consistency
Full of Energy Bhai sab clear hogaya
Day 43/180 done thanku bhaiya🙃
Bhiaya your way teaching is very good. You are helping us a lot in free
ha sir ji sab kuch ache se chamak gaya
chamak gaya sir ji ek no..
Bhaiya sab chamak chuka bahut bahut dhanybad bhaiya
thankyou bhaiya ethne depth mey padhaane ke liye
❤ DAY 43
चलिए चमकाते है
Bhaiya last question ka tc hoga o(row*col) because we are traversing each row and swapping them and for sc o(1) because we are just modifying the matrix not using any extra space 😊
Chalo to fir suru karte h ❤
Bro I am from ap. i want to listen ur classses please provide English subtitles . so it is very helpful for students like me
so you have to learn hindi language. as we learn english
@@colabbro7789 haa bro I too trying but I am in the beginning for both coding and language .so that's why I am not getting that much.absoluetly learning a language is beneficial .
@@saireddysathi7585 em kaaka ayipoindaa mari dsa
OMG ,,,great sir💗💗💗💗💗💗💗💗💗
Just awesome, you're explaining each and every concept very clearly 🫡
sab kuch chamak chuka hai bhaiya...
DAY 41/180
May god bless you bhaiya thank you 🙏
As always,
Tagda & dedicated lecture.
bahut ache se chamka hain
hn bhaiya sab kuch acha se chamak chuka hai........!
Bas bhaiya apke jaisa baap coder banna hai❤
Bhiya ek baat hai c++ ke concept clear ho gye ❤❤❤
crystal clear ho gaya bhaiya
Heartly thanks bhaiya ........❣💖for teaching in depth
thanks for great lecture
Bro you are a magician.
chamka diya bhaiya >>>
Chamak gaya sir 😊
Good morning techies
Ram Ram Rohit bhaiya
Let's start
Great video sir💖🙇♂🙏❤
chamak gya bhaiya🚀🚀❤❤
Chamak gya bhaiya 🎉🎉🎉
Reverse array:
time complexity:-O(n^2)
space complexity:-O(1);
ye tarika badhiya hai bhai
Sab chamak gya bhaiya😊
chamak gaya bhaiya
Simply Awesome♥♥
i am always ready #coderarmy🔥
bhaiya chamak gaya
best video bhaiya
sab chamak gaya bhaiya
Done bhaiya, every topics are shined to me😊
nice sir
Chamak gya bhaiya ❤
Tq bhaiya, kuch seeka aaj
chamak gya
Good Morning Bhayia
Chamak gya bhaiyya😊
Day 43 completed
thank you bhaiyya!!
chamak gaya
Full playlist link diva plz
Good morning Negi bhai ❤
43/180Day's full power full power ❤❤❤❤
#Chamaka bhaiyaa..
love this content bro you are truly gem
int chamka = 0;
chamka++;
cout
Chamka hai !
Optimized code for sum of diagonals question 1:18:12 :
O(2*row) -----> O(row)
c++ code:
void calculateDiagonalSums(int matrix[][3]) {
int primary_diagonal = 0;
int secondary_diagonal = 0;
int size = 3; // Assuming a 3x3 matrix
for (int i = 0; i < size; ++i) {
primary_diagonal += matrix[i][i];
int j = size - 1 - i;
secondary_diagonal += matrix[i][j];
}
std::cout
Good morning Bhaiya 😊
Thanks Bhaiya...❤🎉
sab chamakgaya
Good morning bhaiya ❤❤
amazing class
Day 43/180 completed.
Good morning sir ❤❤
Good morning bhaiya
Chamkadia bhai
Love you bhaiya
Good morning ❤
1:20:00 We can solve it by using only one loop.
for (int i = 0, j = col - 1; i < row; ++i, - -j)
{
first += matrix[i][i];
second += matrix[i][j];
}
Good Morning 🔥
outstanding bhaiya....but my faculty is crying in corner..
aachese chamkaa he brother.
Good morning bhiya
Hello bhai, if possible plz provide problem link of Leetcode, Hacker rank etc., in home work sheet instead of problem statement.
Yes bhai mein link deta hu, jo is lecture mein problem th, wo kisi platform mein availabli nahi th
Ok Bhai. No issue
ram ram sir and everyone
Thank you bhaiya
woow this is my day 41
Day43/180 Completed #180Daysofcode
Love from Pakistan
Good morninig
❤
😍😍😍😍😍😍😍
Good morning
Day -43/180 Completed ✅✅✅
Conquered
#day43 out of 180