This channel is underrated. But the explaination level is 1000
@HelloWorldbyprince3 жыл бұрын
Thanks for your support ❤️ Kindly share my channel with your friends
@dipeshsingh21122 жыл бұрын
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 Жыл бұрын
The explanation was crisp and clear... loved it!! Aur sawal ban gaya finally
@HelloWorldbyprince Жыл бұрын
Thanks a lot
@bhupeshpattanaik71503 жыл бұрын
I knew I more method, but your method is MUCH MUCH BETTER 🔥🔥😍
@chetankumar14873 жыл бұрын
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 Жыл бұрын
Solved the previous video assignment question and transpose of Matrix too.
@Prashant_2_1_0 Жыл бұрын
Bhaiya Aap bahut hi Acchha Samjhaate ho. ❤❤
@tanya7463 Жыл бұрын
Very well and explained in simplified way
@MohitKumar-eu4pzАй бұрын
Best approach
@bhupeshpattanaik71503 жыл бұрын
Yeh question acha ha 😁👌
@funcode-tw3cg Жыл бұрын
thankyou for explanation sir !
@abhigyansharma91083 жыл бұрын
Bhai apni mehnat krte rho aapke smile se hi aadha sawaal hojata hai
@HelloWorldbyprince3 жыл бұрын
so sweet always buddy
@shashank3374 Жыл бұрын
Your explanation slides are just amazing please explain every concept using this way 🙏🙏❤️❤️
@maheshparmar75702 жыл бұрын
I understood the whole concept behind the question thanks bro for clear explanation
@HelloWorldbyprince2 жыл бұрын
Always welcome
@kaif25604 ай бұрын
Bhaiya bht bht thanks pura concept acha se clear ho gya
@HelloWorldbyprince4 ай бұрын
Thanks buddy
@prikshit_sharma407111 ай бұрын
thank you bhaiya mujhe 2d array jara bi smaj ni aata tha. ab questions banne lg gye hai 😄
@asparshraj901610 ай бұрын
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]
@asparshraj901610 ай бұрын
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])
@ishanrai39513 жыл бұрын
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.
@CodingSkillsOfficial2 жыл бұрын
Hello friends I created a video.. Transpose of matrix so you please watch this video kzbin.info/www/bejne/pXmxm5SQmLSjkNU
@_S_AmitPandey2 жыл бұрын
yesss
@yaseerhussain_3 жыл бұрын
Great method
@HelloWorldbyprince3 жыл бұрын
Thanks for your moral support ❤️
@RaviShankarMahto-cz5nl2 жыл бұрын
nicely explain thank you sir
@HelloWorldbyprince2 жыл бұрын
Thanks buddy keep learning Please, share this channel in your college, groups, or LinkedIn bcoz it's cost nothing to you 😀
@tbmsahil8850 Жыл бұрын
bhai plz make a playlist on recursion and strings 🙏🙏🙏
@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 Жыл бұрын
It works only if row = col.
@vrushabhzade84683 жыл бұрын
very good exeplination bro
@HelloWorldbyprince2 жыл бұрын
Thank you for your support
@abhisekbose12212 жыл бұрын
Thanks bhaiya.. i stuck at the problem for 3 hours. Now i totally understand the concept.
@HelloWorldbyprince2 жыл бұрын
Happy to help Please, share this channel in your college, groups, or LinkedIn bcoz it's cost nothing to you 😀
@devansh67722 жыл бұрын
sir thanks . your way of explaining is very nice. and aapke videos ki quality bhi bhot achi h
@HelloWorldbyprince2 жыл бұрын
Thanks and welcome
@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]
@rohitkoshta3798 Жыл бұрын
bhaiya snake pattern par ek separate video banao
@gaziehsanulhaque1906 ай бұрын
you are amazing
@SharvanKumar-ui1kw3 жыл бұрын
I'm already solved this q prince bhaia
@SharvanKumar-ui1kw3 жыл бұрын
Make some basic video on graph
@shubham76682 жыл бұрын
Maaaan you are so underrated
@HelloWorldbyprince2 жыл бұрын
Thanks a ton mere aur v playlist hai wo v dekhna aap
@mohdhammadsiddiqui75982 жыл бұрын
Thanx sir , it was very helpful i was stucked on this question on leetcode , every time same matrix was coming when i transpose.
@HelloWorldbyprince2 жыл бұрын
Excellent
@mdnehal23893 жыл бұрын
i solve this question thanks for clear the concept ..
@CodingSkillsOfficial2 жыл бұрын
Hello friends I created a video.. Transpose of matrix so you please watch this video kzbin.info/www/bejne/pXmxm5SQmLSjkNU
@KuldeepSahu-sq3cq3 жыл бұрын
please make video on determinant of matrix.
@HelloWorldbyprince3 жыл бұрын
Yeah sure
@CodingSkillsOfficial2 жыл бұрын
Hello friends I created a video.. Transpose of matrix so you please watch this video kzbin.info/www/bejne/pXmxm5SQmLSjkNU
@PushpitKamboj5 ай бұрын
hogya tha bhaiya
@KARANKUMAR-vp3nq Жыл бұрын
yes i did
@devbhattacharya1532 жыл бұрын
Thanks a lot bhaiya :)
@HelloWorldbyprince2 жыл бұрын
Please, share this channel in your college, groups, or LinkedIn bcoz it's cost nothing to you 😀
@ABHISHEKKUMAR-wc9ke3 жыл бұрын
ho gya bhaiya
@HelloWorldbyprince3 жыл бұрын
Waoo nice 👍
@SharvanKumar-ui1kw3 жыл бұрын
Make a video on class data type
@HelloWorldbyprince3 жыл бұрын
Yeah sure 😊
@krushnathakkar1626 Жыл бұрын
I did it
@singh.sawan_3 жыл бұрын
Where is playlist of Matrix Series??
@HelloWorldbyprince3 жыл бұрын
Matrix (Multidimensional Array) Complete guide For Interviews DSA: kzbin.info/aero/PLzjZaW71kMwRff0CCcrB93srEiQhJoOzg
@chinubunny997410 ай бұрын
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
@UnKnown-id7ih2 жыл бұрын
kr liya bhiya pichla wala homework.
@HelloWorldbyprince2 жыл бұрын
nice
@sarthak78392 жыл бұрын
what is the time complexity of this approach i am not able to understand it is it O(n2) ?
@HelloWorldbyprince2 жыл бұрын
because it is 2D matrix
@midicine2114 Жыл бұрын
Why comments and title in english but video is not?
@udayjordan42622 жыл бұрын
its only possible for square matrix but what about rectangular matrix see the code below
@HelloWorldbyprince2 жыл бұрын
transpose sirf square matrix me hi hota hai
@only_for_fun1234r2 жыл бұрын
@@HelloWorldbyprince in letcode the same question for 2*3 matrix and for rectangular matrix also
@snehildwivedi6141 Жыл бұрын
2:29 se solution start hai
@HelloWorldbyprince Жыл бұрын
☺️
@asthavarshney48932 жыл бұрын
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; } }
@devansh67722 жыл бұрын
actually its the same thing lol, but yeah it kinda confused me for a second use swap btw
@ashishsketch3 жыл бұрын
Graph data structure kab padaoge?
@HelloWorldbyprince3 жыл бұрын
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: kzbin.info/aero/PLzjZaW71kMwQ-JABTOTypnpRk1BnD2Nx4
@ashishsketch3 жыл бұрын
@@HelloWorldbyprince thank you Reply and I m watching your playlist. U r doing great job.
@RadheKrishna-n1z10 ай бұрын
Bhai jo bio se ho woh jaise meri tarah 😂😅
@Lalitadevi-yp8gi2 жыл бұрын
Aur yaha raat ke 12 baj rahe hai aur yaha video dekha ja raha hai
@HelloWorldbyprince2 жыл бұрын
Aur yaha raat ke 10 baje comment ka reply Diya jaa raha hai 😅😅
@technicalshyab55093 жыл бұрын
Sir swap predefined method hai kya matrix me jo call kiye ho aap
@HelloWorldbyprince3 жыл бұрын
Yess ...swap is inbuilt function in header file
@technicalshyab55093 жыл бұрын
@@HelloWorldbyprince ok sir tq sir apka whatsapp number milega Sir apse bat karna hai toda doubt hi programming se related
@HelloWorldbyprince3 жыл бұрын
Instagram pe baat karlo aap ... Better rahega My Instagram is: helloworldbyprince
@technicalshyab55093 жыл бұрын
@@HelloWorldbyprince ok sir
@AnchityaKumarB22BB0095 ай бұрын
Hogya
@HelloWorldbyprince4 ай бұрын
Niceee
@shubhamgautam85933 жыл бұрын
bhaiya ho ja rhe hai sare..questions
@technicalshyab55093 жыл бұрын
Sir code uper se gaya
@navyamogha9062 Жыл бұрын
is it only me who thinks that he looks like Mr Beast 😂
@HelloWorldbyprince Жыл бұрын
😂, nope lots of them told me this earlier
@navyamogha9062 Жыл бұрын
😂😂
@bhanushr3 жыл бұрын
matrix maths mein sabse boaring topic tha..ye kun kisi ko accha lagega
@HelloWorldbyprince3 жыл бұрын
😁
@ishantsethi13 жыл бұрын
so, its taking time complexity of O(n^2) in it, is there any way we can transpose it in less than this complexity?
@sunnydewangan22122 жыл бұрын
not possible, traversing 2d array always requires O(N^2) steps.
@chetankumar14873 жыл бұрын
bhai mjhe ye dar lgta h ki iss channel pe view nhi aa rha h....khi ye banda video dalna band kr na de
@HelloWorldbyprince3 жыл бұрын
Ye darr to mujhe v hai 😂😂 Please promote my channel with your friends and cross college friends ❤️
@chetankumar14873 жыл бұрын
@@HelloWorldbyprince bhai mai apne sare group me daal diya hun 1 saal phle hi.... dynamic ka v video shuru kr do bhai
@HelloWorldbyprince3 жыл бұрын
Sure brother
@sumanpramanik48623 жыл бұрын
marathi thamba
@HelloWorldbyprince3 жыл бұрын
Yeah 😂😂
@adityakauthkar9701Ай бұрын
this only works for square matrix . Bro is totally wrong