Тёмный

Merge Sorted Array | Leetcode 88 

Technosage
Подписаться 11 тыс.
Просмотров 56 тыс.
50% 1

Merge Sorted Array
Leetcode problem number 88
JAVA interview programming playlist:
• Interview Programming ...
Git Repo:

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

 

10 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 60   
@pragmaticcoder6910
@pragmaticcoder6910 8 месяцев назад
Your explanations are much better than LeetCode Editorial solutions. Thanks !
@somaynaik24
@somaynaik24 2 месяца назад
bro im new to this and i didnt understand anything , how to begin learning
@harshivam
@harshivam 21 день назад
@@somaynaik24 what you did't understand here ?
@YashSingh-xs5yj
@YashSingh-xs5yj 18 дней назад
Thanks for explaining this question so well, I have just started with LC and your videos are helpful
@jopaslona1
@jopaslona1 Год назад
Thank you very much! I finally understood how to solve this problem without creating new array
@shivraj940
@shivraj940 9 месяцев назад
Mam, only 6 problems there in Top 150 interview category. Please complete this section
@diproy9363
@diproy9363 Год назад
To the point and simple! awesome explanation.
@thAsciNileshPal
@thAsciNileshPal 2 месяца назад
keep it up didiiiii ; U and SashCode channel doing great job ; i request u too pls come up with the series of daily leetcode potd solutionss
@sahilali2514
@sahilali2514 Год назад
Ma'am please solve other interview questions...your explanations are very good.Thankyou🤗
@TechnosageLearning
@TechnosageLearning Год назад
Hi..Will continue leetcode questions series very soon..Please stay tuned.. Thanks!
@athravnigadikar4925
@athravnigadikar4925 8 месяцев назад
Plz mam can u teach how to implement hashmap and other collection things in problems detail video so many students gets confusing in that
@Adarsh_Pradhan
@Adarsh_Pradhan Год назад
found this channel today keep making videos like this best of luck friend
@pcuseruser-n3f
@pcuseruser-n3f 11 месяцев назад
mam ek doubt h ki apne loop start karte time j>=0 ki place pr i>=0 kyu nhi likha ???
@courtneyadjoa246
@courtneyadjoa246 8 месяцев назад
kyunki humko second array se hi compare karna hai na.... aur resultant changes i variable ko represent karte hai . aur humne final result bhi wahin store karna hai.
@swathi_bee4
@swathi_bee4 3 месяца назад
great explanation mam..thank you so much
@sauryakumargupta3008
@sauryakumargupta3008 3 месяца назад
Outstanding explanation in such a ez way
@mrf8795
@mrf8795 Год назад
dear sister, I am unable to catch the coding logic without seeing the code in video or other tutorial but i understand what to do but cant implement the code .this giving me much stress, I am a beginner .I have solved 9 easy problem but in every problem i have to take help..what should i do?where should i focus on.can I be a good programmer?
@mursalin3698
@mursalin3698 Год назад
just keep grinding.
@humanityrush
@humanityrush Год назад
Keep practicing easy lvl problems and build that confidence!
@mrf8795
@mrf8795 Год назад
@@humanityrush thanks for your advice.
@medakremlakhdhar419
@medakremlakhdhar419 20 дней назад
Why not just put the nums2 inside nums1 and sort the array ? wouldn't that be much easier ?
@brokenwarrior7007
@brokenwarrior7007 7 дней назад
Cause both are already sorted and it will increase the time complexity of the solution, first you will put each element in the array then start using any of the sorting algorithm
@nammi-dahiya
@nammi-dahiya Год назад
Thanks mam apke solution se maine DSA ke bhut ache ache concepts sikha paya
@chaithanyack
@chaithanyack 7 месяцев назад
how we are taking i=m-1; i dont understand that particular part
@mohsinbehzad8993
@mohsinbehzad8993 6 месяцев назад
in above example, m is equal to 3, means 3rd position. But the index in Array starts from 0 and position starts from 1. So (i =m-1) means that In above example, when the position is 3 then the index will be 2. That is the reason that we subtract 1 from the position of Array to get the index. Hope u understand...
@gustavodeoliveira8316
@gustavodeoliveira8316 Месяц назад
@@mohsinbehzad8993 good explanation.
@mdayazalam3132
@mdayazalam3132 Год назад
Mam please upload the video on Leetcode problem no- 238. Product of Array Except Self
@TechnosageLearning
@TechnosageLearning Год назад
Hi..Please wait for some time..Will upload soon
@mdayazalam3132
@mdayazalam3132 Год назад
@@TechnosageLearning ok mam
@AshishKumar-od3pr
@AshishKumar-od3pr 6 месяцев назад
Why are we using 0,0,0 in the end of nums1, since arrays are mutable?
@syedrizwan2203
@syedrizwan2203 6 месяцев назад
arrays are fixed in nature if you don't initialised it with 0s what you will put there other than zero to make it size of m i.e 6 here 2nd thing if you use scanner class also arrays will get initialised with zeros only for int values.
@AshishKumar-od3pr
@AshishKumar-od3pr 6 месяцев назад
@@syedrizwan2203 thanks bro
@melk48111
@melk48111 11 месяцев назад
Your videos are great. Thank you
@technologiesmotivationd7754
@technologiesmotivationd7754 8 месяцев назад
Hi mam your explanation is very easy so please can you make leet code video in java please mam
@SayanBanikAuthor
@SayanBanikAuthor 4 месяца назад
Very Nice Video! Thanks Ma'am
@bhargavasai5557
@bhargavasai5557 7 месяцев назад
Thank you ma'am
@BlendBox
@BlendBox 6 месяцев назад
Thank you so much 🙏
@11csepratikshaargulewar71
@11csepratikshaargulewar71 4 месяца назад
Didi you don't explain why we have to place i, j or k pointers at that position only 😢 . Why can't we start our pointers from somewhere else . You should explain also as it will help with thought process
@bibhutibaibhavbora8770
@bibhutibaibhavbora8770 3 месяца назад
Because we are starting from some specific point that is num1 and nums2 places because these arrays are sorted already. We can't randomly put pointers
@exactly4234
@exactly4234 17 дней назад
because since we put i or j into the k we should move forward which means - -
@Hardik_Kamaliya5978
@Hardik_Kamaliya5978 2 месяца назад
thank you, mam.
@ДмитрийКоломеец-э2т
god level explanation
@s.pavithra5238
@s.pavithra5238 27 дней назад
pls upload more videos
@krushnachandrajena6297
@krushnachandrajena6297 9 месяцев назад
can you share your git repo.
@YoonMilling
@YoonMilling Год назад
Thank you!
@movieshots2135
@movieshots2135 5 месяцев назад
there is solution better than this just add nums2[] elements in the nums1[] array and sort them
@bhargavchandhu5100
@bhargavchandhu5100 2 месяца назад
it is best and simple than above class Solution { public void merge(int[] nums1, int m, int[] nums2, int n) { for (int j = 0, i = m; j < n; j++) { nums1[i] = nums2[j]; i++; } Arrays.sort(nums1); } }
@ec072nikitavishwakarma7
@ec072nikitavishwakarma7 Год назад
Thankyou ❤
@padmavatishah9922
@padmavatishah9922 Год назад
great expplanation.
@upunaireshakeerawella7776
@upunaireshakeerawella7776 Год назад
Awesome thanks
@Rob-J-BJJ
@Rob-J-BJJ Год назад
thank you it worked fine
@lovegarg5061
@lovegarg5061 Год назад
This code is fail when m=0
@TechnosageLearning
@TechnosageLearning Год назад
Hi.. The code will not fail..As mentioned in the problem, m=0 means there are no elements in the nums 1 arrays so the output would be all elements of nums2 array.. Please try the code..I have tried and submItted ,it's working fine
@infinity2creation551
@infinity2creation551 Год назад
Yes its failing check again didi
@Rob-J-BJJ
@Rob-J-BJJ Год назад
it works for me
@irfanahmad9761
@irfanahmad9761 11 месяцев назад
Hi, pls continue this series. #addicted
@slowedReverbJunction
@slowedReverbJunction Год назад
Cute kitni hai ye ❤
@disrespect12
@disrespect12 7 месяцев назад
class Solution { public void merge(int[] nums1, int m, int[] nums2, int n) { int count=0; for(int i=m;i
@SayanBanikAuthor
@SayanBanikAuthor 4 месяца назад
7:05
Далее
Remove Element | Leetcode problem 27
6:30
Просмотров 38 тыс.
LeetCode was HARD until I Learned these 15 Patterns
13:00
Merge Sorted Array - LeetCode 88 - Java
11:40
Просмотров 10 тыс.
Merge Sorted Array | Leetcode 88 | Arrays
16:54
Просмотров 42 тыс.
Merge Sorted Array - Leetcode 88 - Python
10:18
Просмотров 220 тыс.