Тёмный

Transpose of Matrix | @GeeksforGeeks | Competitive Programming for Beginners |  

Hello World
Подписаться 80 тыс.
Просмотров 26 тыс.
50% 1

Опубликовано:

 

31 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 109   
@ankitpandey-pg1yn
@ankitpandey-pg1yn 3 года назад
This channel is underrated. But the explaination level is 1000
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
Thanks for your support ❤️ Kindly share my channel with your friends
@dipeshsingh2112
@dipeshsingh2112 Год назад
yes sir actually i don't know why I was facing issues in matrix it was very easy on pen and paper but if we talk about programming it is hard as rock. I thought I am lagging in basics then my friend suggested your channel and your work is actually nice and honest .
@yet_trying
@yet_trying Год назад
The explanation was crisp and clear... loved it!! Aur sawal ban gaya finally
@HelloWorldbyprince
@HelloWorldbyprince 11 месяцев назад
Thanks a lot
@bhupeshpattanaik7150
@bhupeshpattanaik7150 3 года назад
I knew I more method, but your method is MUCH MUCH BETTER 🔥🔥😍
@chetankumar1487
@chetankumar1487 3 года назад
bhai you have done very well in lifting my level in programming aur general and conceptual level ka video bhut aa gya h...ab kch vast level ka hona chahiye....jaise dynamic,greedy,game theory, bit manupulation
@GAURAV-cy4hh
@GAURAV-cy4hh Год назад
Solved the previous video assignment question and transpose of Matrix too.
@MohitKumar-eu4pz
@MohitKumar-eu4pz 14 дней назад
Best approach
@Prashant_2_1_0
@Prashant_2_1_0 Год назад
Bhaiya Aap bahut hi Acchha Samjhaate ho. ❤❤
@funcode-tw3cg
@funcode-tw3cg Год назад
thankyou for explanation sir !
@tanya7463
@tanya7463 Год назад
Very well and explained in simplified way
@prikshit_sharma4071
@prikshit_sharma4071 10 месяцев назад
thank you bhaiya mujhe 2d array jara bi smaj ni aata tha. ab questions banne lg gye hai 😄
@shashank3374
@shashank3374 Год назад
Your explanation slides are just amazing please explain every concept using this way 🙏🙏❤️❤️
@kaif2560
@kaif2560 3 месяца назад
Bhaiya bht bht thanks pura concept acha se clear ho gya
@HelloWorldbyprince
@HelloWorldbyprince 3 месяца назад
Thanks buddy
@asparshraj9016
@asparshraj9016 9 месяцев назад
My python solution for the homework question: for i in range(len(a)): if i%2 == 0: for j in range(len(a[0])): print(a[i][j]) else: for j in range(len(a[0])-1,-1,-1): print(a[i][j])
@asparshraj9016
@asparshraj9016 9 месяцев назад
My python solution for transpose of matrix question: for i in range(len(a)): for j in range(i+1): a[i][j], a[j][i] = a[j][i], a[i][j]
@abhigyansharma9108
@abhigyansharma9108 3 года назад
Bhai apni mehnat krte rho aapke smile se hi aadha sawaal hojata hai
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
so sweet always buddy
@tbmsahil8850
@tbmsahil8850 Год назад
bhai plz make a playlist on recursion and strings 🙏🙏🙏
@maheshparmar7570
@maheshparmar7570 2 года назад
I understood the whole concept behind the question thanks bro for clear explanation
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
Always welcome
@RaviShankarMahto-cz5nl
@RaviShankarMahto-cz5nl 2 года назад
nicely explain thank you sir
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
Thanks buddy keep learning Please, share this channel in your college, groups, or LinkedIn bcoz it's cost nothing to you 😀
@bhupeshpattanaik7150
@bhupeshpattanaik7150 3 года назад
Yeh question acha ha 😁👌
@ishanrai3951
@ishanrai3951 3 года назад
2:42 I'm sorry to say this but you're wrong there is a transpose even for non-square matrix(rectangular matrix) for example if A is a matrix with single row and 3 columns then it's transpose will have 3 rows and 1 columns.
@CodingSkillsOfficial
@CodingSkillsOfficial 2 года назад
Hello friends I created a video.. Transpose of matrix so you please watch this video ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-oHNjaZcOpZs.html
@_S_AmitPandey
@_S_AmitPandey 2 года назад
yesss
@yaseerhussain_
@yaseerhussain_ 3 года назад
Great method
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
Thanks for your moral support ❤️
@devansh6772
@devansh6772 2 года назад
sir thanks . your way of explaining is very nice. and aapke videos ki quality bhi bhot achi h
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
Thanks and welcome
@CodeGenius123
@CodeGenius123 Год назад
void Transpose(int arr[3][3]) { //first loop for colums for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { cout
@shashank3374
@shashank3374 Год назад
It works only if row = col.
@vrushabhzade8468
@vrushabhzade8468 2 года назад
very good exeplination bro
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
Thank you for your support
@rohitkoshta3798
@rohitkoshta3798 Год назад
bhaiya snake pattern par ek separate video banao
@abhisekbose1221
@abhisekbose1221 2 года назад
Thanks bhaiya.. i stuck at the problem for 3 hours. Now i totally understand the concept.
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
Happy to help Please, share this channel in your college, groups, or LinkedIn bcoz it's cost nothing to you 😀
@rahulkarmakar8067
@rahulkarmakar8067 Год назад
class Solution: def transpose(self, matrix, n): for i in range(1,n): for j in range(0,i): matrix[i][j],matrix[j][i]=matrix[j][i],matrix[i][j]
@mohdhammadsiddiqui7598
@mohdhammadsiddiqui7598 2 года назад
Thanx sir , it was very helpful i was stucked on this question on leetcode , every time same matrix was coming when i transpose.
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
Excellent
@gaziehsanulhaque190
@gaziehsanulhaque190 6 месяцев назад
you are amazing
@SharvanKumar-ui1kw
@SharvanKumar-ui1kw 3 года назад
I'm already solved this q prince bhaia
@SharvanKumar-ui1kw
@SharvanKumar-ui1kw 3 года назад
Make some basic video on graph
@KuldeepSahu-sq3cq
@KuldeepSahu-sq3cq 3 года назад
please make video on determinant of matrix.
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
Yeah sure
@CodingSkillsOfficial
@CodingSkillsOfficial 2 года назад
Hello friends I created a video.. Transpose of matrix so you please watch this video ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-oHNjaZcOpZs.html
@shubham7668
@shubham7668 2 года назад
Maaaan you are so underrated
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
Thanks a ton mere aur v playlist hai wo v dekhna aap
@mdnehal2389
@mdnehal2389 3 года назад
i solve this question thanks for clear the concept ..
@CodingSkillsOfficial
@CodingSkillsOfficial 2 года назад
Hello friends I created a video.. Transpose of matrix so you please watch this video ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-oHNjaZcOpZs.html
@SharvanKumar-ui1kw
@SharvanKumar-ui1kw 3 года назад
Make a video on class data type
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
Yeah sure 😊
@asthavarshney4893
@asthavarshney4893 2 года назад
I got the time taken less than prince bhaiya(=0.08s) I used a single loop CODE: int i=0,j=0,len=0; while(i=n) { i++; len++; j=len; } }
@devansh6772
@devansh6772 2 года назад
actually its the same thing lol, but yeah it kinda confused me for a second use swap btw
@PushpitKamboj
@PushpitKamboj 4 месяца назад
hogya tha bhaiya
@ABHISHEKKUMAR-wc9ke
@ABHISHEKKUMAR-wc9ke 3 года назад
ho gya bhaiya
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
Waoo nice 👍
@devbhattacharya153
@devbhattacharya153 2 года назад
Thanks a lot bhaiya :)
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
Please, share this channel in your college, groups, or LinkedIn bcoz it's cost nothing to you 😀
@sarthak7839
@sarthak7839 2 года назад
what is the time complexity of this approach i am not able to understand it is it O(n2) ?
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
because it is 2D matrix
@KARANKUMAR-vp3nq
@KARANKUMAR-vp3nq Год назад
yes i did
@singh.sawan_
@singh.sawan_ 3 года назад
Where is playlist of Matrix Series??
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
Matrix (Multidimensional Array) Complete guide For Interviews DSA: ru-vid.com/group/PLzjZaW71kMwRff0CCcrB93srEiQhJoOzg
@krushnathakkar1626
@krushnathakkar1626 Год назад
I did it
@UnKnown-id7ih
@UnKnown-id7ih 2 года назад
kr liya bhiya pichla wala homework.
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
nice
@chinubunny9974
@chinubunny9974 9 месяцев назад
3/9☑ my solution 👇 class Solution { public: //Function to find transpose of a matrix. void transpose(vector& matrix, int n) { // code here vectortemp(n,vector(n,0)); for(int i=0;i
@technicalshyab5509
@technicalshyab5509 3 года назад
Sir swap predefined method hai kya matrix me jo call kiye ho aap
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
Yess ...swap is inbuilt function in header file
@technicalshyab5509
@technicalshyab5509 3 года назад
@@HelloWorldbyprince ok sir tq sir apka whatsapp number milega Sir apse bat karna hai toda doubt hi programming se related
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
Instagram pe baat karlo aap ... Better rahega My Instagram is: helloworldbyprince
@technicalshyab5509
@technicalshyab5509 3 года назад
@@HelloWorldbyprince ok sir
@ashishsketch
@ashishsketch 3 года назад
Graph data structure kab padaoge?
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
It will take some time 😌 Ashish Till now, I suggest you, if you didn't watch it then : Data Structure & Algorithms For Beginners by Hello World: ru-vid.com/group/PLzjZaW71kMwQ-JABTOTypnpRk1BnD2Nx4
@ashishsketch
@ashishsketch 3 года назад
@@HelloWorldbyprince thank you Reply and I m watching your playlist. U r doing great job.
@RadheKrishna-n1z
@RadheKrishna-n1z 9 месяцев назад
Bhai jo bio se ho woh jaise meri tarah 😂😅
@udayjordan4262
@udayjordan4262 2 года назад
its only possible for square matrix but what about rectangular matrix see the code below
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
transpose sirf square matrix me hi hota hai
@only_for_fun1234r
@only_for_fun1234r 2 года назад
​@@HelloWorldbyprince in letcode the same question for 2*3 matrix and for rectangular matrix also
@midicine2114
@midicine2114 Год назад
Why comments and title in english but video is not?
@snehildwivedi6141
@snehildwivedi6141 Год назад
2:29 se solution start hai
@HelloWorldbyprince
@HelloWorldbyprince Год назад
☺️
@shubhamgautam8593
@shubhamgautam8593 3 года назад
bhaiya ho ja rhe hai sare..questions
@AnchityaKumarB22BB009
@AnchityaKumarB22BB009 4 месяца назад
Hogya
@HelloWorldbyprince
@HelloWorldbyprince 4 месяца назад
Niceee
@Lalitadevi-yp8gi
@Lalitadevi-yp8gi 2 года назад
Aur yaha raat ke 12 baj rahe hai aur yaha video dekha ja raha hai
@HelloWorldbyprince
@HelloWorldbyprince 2 года назад
Aur yaha raat ke 10 baje comment ka reply Diya jaa raha hai 😅😅
@technicalshyab5509
@technicalshyab5509 3 года назад
Sir code uper se gaya
@ishantsethi1
@ishantsethi1 3 года назад
so, its taking time complexity of O(n^2) in it, is there any way we can transpose it in less than this complexity?
@sunnydewangan2212
@sunnydewangan2212 2 года назад
not possible, traversing 2d array always requires O(N^2) steps.
@bhanushr
@bhanushr 3 года назад
matrix maths mein sabse boaring topic tha..ye kun kisi ko accha lagega
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
😁
@adityakauthkar9701
@adityakauthkar9701 Месяц назад
this only works for square matrix . Bro is totally wrong
@chetankumar1487
@chetankumar1487 3 года назад
bhai mjhe ye dar lgta h ki iss channel pe view nhi aa rha h....khi ye banda video dalna band kr na de
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
Ye darr to mujhe v hai 😂😂 Please promote my channel with your friends and cross college friends ❤️
@chetankumar1487
@chetankumar1487 3 года назад
@@HelloWorldbyprince bhai mai apne sare group me daal diya hun 1 saal phle hi.... dynamic ka v video shuru kr do bhai
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
Sure brother
@navyamogha9062
@navyamogha9062 Год назад
is it only me who thinks that he looks like Mr Beast 😂
@HelloWorldbyprince
@HelloWorldbyprince Год назад
😂, nope lots of them told me this earlier
@navyamogha9062
@navyamogha9062 Год назад
😂😂
@sumanpramanik4862
@sumanpramanik4862 3 года назад
marathi thamba
@HelloWorldbyprince
@HelloWorldbyprince 3 года назад
Yeah 😂😂
Далее
СОБАКА И ТРИ ТАБАЛАПКИ😱#shorts
00:24
ДО ТОГО КАК СТАЛО СТРАШНО #6
3:34:52
I gave 127 interviews. Top 5 Algorithms they asked me.
8:36
How to start Competitive Programming? For beginners!
9:43