Пікірлер
@AkashKumar-ly1pb
@AkashKumar-ly1pb 2 сағат бұрын
help.. mre m mongoose connected hi n aa rha h server is running tk aa rha h uske baad error aa rha h
@PRO_83
@PRO_83 3 сағат бұрын
bhaiya college aapne sql shikne ko kha toh phir usse join krne ke liye konsa course karu??
@priencekashyap4795
@priencekashyap4795 3 сағат бұрын
C++
@VaibhavSutar-xm3cn
@VaibhavSutar-xm3cn 3 сағат бұрын
class Solution { //Function to sort an array according to the other array. sortA1ByA2(A1, N, A2, M){ // code here let map = new Map() for(let i=0;i<N;i++){ if(!map.get(A1[i])){ map.set(A1[i],1) }else{ map.set(A1[i],map.get(A1[i])+1) } } // console.log(map) let res = [] for(let x of A2){ if(!map.get(x)){ continue; }else if(map.get(x) == 1){ let index = A1.indexOf(x) A1.splice(index,1) res.push(x) }else if(map.get(x) > 1){ A1= A1.filter(item=>item !=x) res.push(x,x) } } return [...res,...A1.sort((a,b)=>a-b)] } } solved by my own ab me sukun se ye tutorial dekh sakta hu😅😅
@SupportingBoy
@SupportingBoy 4 сағат бұрын
install ho gaya
@SupportingBoy
@SupportingBoy 4 сағат бұрын
prince bhyia ki jai ho
@SupportingBoy
@SupportingBoy 5 сағат бұрын
I really love it. Your teaching style is very simple and easy to understand. I saw different video related to Golang but your videos are best and amazing ❤❤
@subhransupriyaranjannayak4191
@subhransupriyaranjannayak4191 6 сағат бұрын
void buildHeap() { int n = heap.size(); for (int i = n / 2 - 1; i >= 0; --i) { minHeapify(i); } }
@subhransupriyaranjannayak4191
@subhransupriyaranjannayak4191 6 сағат бұрын
void deleteKey(int index) { if (index >= heap.size()) { throw out_of_range("Index is out of bounds"); } // Decrease the value to negative infinity and extract the min decreaseKey(index, INT_MIN); extractMin(); }
@user-gx2nw5pc1z
@user-gx2nw5pc1z 6 сағат бұрын
Very useful video sir for freshers,Thank You!
@subhransupriyaranjannayak4191
@subhransupriyaranjannayak4191 7 сағат бұрын
int extractMin() { if (heap.size() == 0) return INT_MAX; // heap is empty if (heap.size() == 1) { int minVal = heap[0]; heap.pop_back(); return minVal; } // Store the MIn value and remove it int root = heap[0]; heap[0] = heap.back(); heap.pop_back(); minHeapify(0); return root; } // get the Min element without removing it int getMin() { if (heap.size() == 0) throw out_of_range("Heap is empty"); return heap[0]; }
@roteshkumar8480
@roteshkumar8480 7 сағат бұрын
#reallearning 🔥🔥
@ayushmorya3102
@ayushmorya3102 9 сағат бұрын
Thankyou JI Bless❤ me and ❤ALL
@user-gu8jw1yf5m
@user-gu8jw1yf5m 9 сағат бұрын
first we apply authentication after authorization happed
@shuvbhowmickbestin
@shuvbhowmickbestin 12 сағат бұрын
Instead of so many base cases we can simply initialise the 2D array like this and then replace the base cases with the fist line that you've written: double [,] dp = new double [n+1, sum+1]; dp[0,0] = 1; for (int j=1; j<=sum; j++) dp[0, j] = 0; for (int i=1; i<=n; i++) for (int j=0; j<=sum; j++) dp[i, j] = -1;
@user-rp4uv8xf6e
@user-rp4uv8xf6e 14 сағат бұрын
Authentication implemented first
@anushka23429
@anushka23429 15 сағат бұрын
aapki videos bohot helpful hai. thank you sir
@DR-cm2sz
@DR-cm2sz 16 сағат бұрын
Exam kayse liya jayga? Online?
@HelloWorldbyprince
@HelloWorldbyprince 16 сағат бұрын
Yess online
@spicysugar9931
@spicysugar9931 Күн бұрын
date kya h exm ki
@HelloWorldbyprince
@HelloWorldbyprince 16 сағат бұрын
As soon as possible u can also check on website
@Ravikumar-vk8se
@Ravikumar-vk8se Күн бұрын
wonderfully explained . best playlist to learn nodejs
@sakshisahu9507
@sakshisahu9507 Күн бұрын
Thankyou brother i am very excited for this course ❤
@kavitakharat7267
@kavitakharat7267 Күн бұрын
best video, very useful and easy to understand 👍
@sakshisahu9507
@sakshisahu9507 Күн бұрын
I am a working professional I work in node js projects but my concepts are not clear I hope you videos help full for me
@sakshisahu9507
@sakshisahu9507 Күн бұрын
Thankyou brother ❤
@user-ym1ym7ty7f
@user-ym1ym7ty7f Күн бұрын
Lol! First of all i did BCA/MCA Job market has going down no Job in campus or out campus. Mostly IT professional are jobless due to recession including me having skills has no possiblity to get a job of 2 LPA as well.
@srs5598
@srs5598 Күн бұрын
excellent. very true
@shreeramsingh7652
@shreeramsingh7652 Күн бұрын
Thank you bhaiya
@paulaneesh5
@paulaneesh5 Күн бұрын
You didn't even explain that to import a function in a different file and use it, you have to export it from the actual file and to do that you have to name it will Caps
@ashokyadavfqplmgxjia4668
@ashokyadavfqplmgxjia4668 Күн бұрын
Bhai isse acha tum two routes bana ker code likh kar samjha sete😂😂....
@anushkapatel2167
@anushkapatel2167 Күн бұрын
nice explaination
@sanilkadam1697
@sanilkadam1697 Күн бұрын
it's great lecture and i am very excited to learn GoLang
@arijitchowdhury9272
@arijitchowdhury9272 Күн бұрын
Enjoying Recursion & DP series 😇
@ShakeelAhmed-fb5vs
@ShakeelAhmed-fb5vs Күн бұрын
Its motivate me,i will try to complete this course
@rohitpal73
@rohitpal73 Күн бұрын
Ur coding is not clean
@ajayraj8592
@ajayraj8592 Күн бұрын
Prince Bhaiya Time ho to MongoDB pe video bna lena sir. yo bhi stong ho jayega. Aapka concept bahut logical hai.
@ajayraj8592
@ajayraj8592 Күн бұрын
Really Prince Bhaiya maza aa Gya thank you so much for that level project you provided, wo bhi free. Your guidance would be phenomenal in my full-stack journey.
@webduniya2355
@webduniya2355 Күн бұрын
2022 passout student and fresher, can I apply
@bollybuck
@bollybuck Күн бұрын
great vid
@thefourhourtalk
@thefourhourtalk Күн бұрын
how to get questions pdf someone ?
@thefourhourtalk
@thefourhourtalk Күн бұрын
bhaiya youre so so good at teaching ; I am regretting now why didnt i found you earlier !!
@RitikaBaliyan-go3pn
@RitikaBaliyan-go3pn 2 күн бұрын
Nice question ❤
@VanshGoel
@VanshGoel 2 күн бұрын
This video really loaded with correct and pure information, no bakwaas🫡
@kunalkhare5484
@kunalkhare5484 2 күн бұрын
Hello.go:5:2: package myutil is not in std not done
@anuragtiwari2822
@anuragtiwari2822 2 күн бұрын
You are like a gem 💎 for us...❤
@user-kn8jr5uy9u
@user-kn8jr5uy9u 2 күн бұрын
Thank you brother!
@kunalkhare5484
@kunalkhare5484 2 күн бұрын
Done😀😀
@thefourhourtalk
@thefourhourtalk 2 күн бұрын
Bhaiya is best in code teaching and even more excellent in sales
@thefourhourtalk
@thefourhourtalk 2 күн бұрын
Omg you seriously did it for free ; you're great bhaiya !!!!
@utkarshamedhekar
@utkarshamedhekar 2 күн бұрын
first time getting to understand dp this well
@keshavgoyal3736
@keshavgoyal3736 2 күн бұрын
Nice