Key Pair Hashing Problems |

  Рет қаралды 13,953

Hello World

Hello World

Күн бұрын

Пікірлер: 77
@xyz956
@xyz956 3 жыл бұрын
op admi ho bhai sahi mein,bhai hindi me lkin samjhane ke baad alag hi feel aata hai.
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Exactly 😂😌
@vinayjoshi8714
@vinayjoshi8714 8 ай бұрын
Bhai question padha aur ho gaya Bina dekhe solution aapke padhane ki wajah se hi kar paya mein Thank you bhaiya ❤
@nayansinghal23
@nayansinghal23 2 жыл бұрын
Bhaiya Hashing was not taught to me by my university professor and when I opened gfg i was unable to understand hashing. But after this playlist I am becoming confident day by day and can solve easy problems of hashing from gfg. All credit goes to you. Thank you bhaiya🥰🥰🥰
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
Thanks a lot Nayan Please, if possible then share this channel in your college, groups, or LinkedIn bcoz it's cost nothing to you 😀
@nayansinghal23
@nayansinghal23 2 жыл бұрын
@@HelloWorldbyprince bhaiya aapke channel ke bare m sabko pata h junior Senior everyone. ❣️❣️
@oqant0424
@oqant0424 2 жыл бұрын
after seeing this playlist I am becoming confident day by day and can solve problems of hashing .All credit goes to you. Thank you bhai!!!!!!!!!!!!!!!!!
@bhupeshpattanaik7150
@bhupeshpattanaik7150 3 жыл бұрын
Congratulations for the sponsorship 🥳🔥
@PriyankaJaiswal-gf1rw
@PriyankaJaiswal-gf1rw 3 жыл бұрын
awesome explaination bhaiya. I was unable to do one of the hashing question but after watching this video i did it in no time.tysm bhaiya
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Keep learning priyanka After this playlist of hashing You feel more confident 😃
@PriyankaJaiswal-gf1rw
@PriyankaJaiswal-gf1rw 3 жыл бұрын
Yes bhaiya.Tysm
@Man_of_Culture.
@Man_of_Culture. 3 жыл бұрын
Hashing is good but it's solution with sorting is best .
@shubhamgupta9778
@shubhamgupta9778 3 жыл бұрын
bool hasArrayTwoCandidates(int arr[], int n, int sum) { unordered_set s; for (int i = 0; i < n ; i++){ int temp = sum - arr[i]; if (s.find(temp) != s.end()) return true; s.insert(arr[i]); } return false; // code here } we can solve this question by using unordered_set also bro...
@PIYUSH-lz1zq
@PIYUSH-lz1zq 3 жыл бұрын
Bro >1 ka conditions kaha hai ...! If sum =8 and array might have 4 as element then it will count twice of that element !!
@mithileshkumarsingh222
@mithileshkumarsingh222 2 жыл бұрын
USING UNORDERED SET unordered_set st; for(int i=0; i
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
Nice buddy 🔥
@cr7johnChan
@cr7johnChan 3 жыл бұрын
Thanl you bhaiya for guiding !
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Thanks for the supporting me
@kritisingh3194
@kritisingh3194 2 жыл бұрын
Java solution for the question: boolean hasArrayTwoCandidates(int arr[], int n, int X) { Map mp = new HashMap(); for(int i=0; i
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
amazing work Kriti
@masumali8356
@masumali8356 Жыл бұрын
you are the best.............masum.
@ayushkashyap3643
@ayushkashyap3643 2 жыл бұрын
alternate solution- unordered_setstore; store.insert(arr[0]); for(int i=1;i
@AbuBakar-tx7wj
@AbuBakar-tx7wj Жыл бұрын
It can be done by unordered_set bool hasArrayTwoCandidates(int arr[], int n, int x) { unordered_set s; for(int i=0;i
@kumarabhishek3890
@kumarabhishek3890 5 ай бұрын
we can use a hash set too just temporarily remove that element before assessing it.
@oqant0424
@oqant0424 2 жыл бұрын
thanks bhaiya for always inspiring us :)
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
Always welcome
@nagabasavannas1440
@nagabasavannas1440 3 жыл бұрын
your videos are best in youtube and explation is better than our profesors. by the way can't we solve the problem using unordered_set when hit with element erasing it ??????
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Thanks for the support ☺️ And yes, if u think u can just give a try and if it is possible then yess we can do it And please also paste the solution in the comments section
@ovokteb9671
@ovokteb9671 3 жыл бұрын
Two pointer approach would also be a optimal solution for this problem:) And thank u bhaiya ❤ for this awesome playlist on Hashing 🙌
@altafmazhar7762
@altafmazhar7762 3 жыл бұрын
No it wont to use two pointer we first have to sort the array
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
Most welcome 😊
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
u r right
@only_for_fun1234r
@only_for_fun1234r Жыл бұрын
using set ----------- bool hasArrayTwoCandidates(int arr[], int n, int x) { set st; for(int i=0;i
@uditpanjiyar3203
@uditpanjiyar3203 Жыл бұрын
But we can also solve this question using unordered set & here is the simplest code bool hasArrayTwoCandidates(int arr[], int n, int x) { // code here unordered_sets; for(int i=0; i
@shashwatdev2371
@shashwatdev2371 2 жыл бұрын
It can also be done using Unordered set class Solution{ public: // Function to check if array has 2 elements // whose sum is equal to the given value bool hasArrayTwoCandidates(int arr[], int n, int x) { unordered_setuset; int j,k; for(int i=0;i
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
yup
@dudlavarumakanth4671
@dudlavarumakanth4671 3 жыл бұрын
super prince sir
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Welcome 😃😃
@NIKHILSINGH-kg2du
@NIKHILSINGH-kg2du 2 жыл бұрын
good explanation
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
Thanks a lot nikhil
@deepanshu4769
@deepanshu4769 Жыл бұрын
alternate solution bool hasArrayTwoCandidates(int arr[], int n, int target) { unordered_map umap; for(int i=0;i
@princesharma7623
@princesharma7623 2 жыл бұрын
SIMPLE SOLUTION unordered_mapm; for(int i=0; i
@aryangupta7290
@aryangupta7290 3 жыл бұрын
Alternatively start graph as well, sir.
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Yeah buddy I will try
@shivamsinha5554
@shivamsinha5554 3 жыл бұрын
my approach hope this will help you
@amitprasadiitg2564
@amitprasadiitg2564 2 жыл бұрын
CPP unordered_mapm; for(int i=0;i
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
nice bro ..keep learning like this
@pratik.784
@pratik.784 2 жыл бұрын
Set se easily ho jayega
@oqant0424
@oqant0424 2 жыл бұрын
11/18 done (8.12.22)
@AinasDiaries
@AinasDiaries 3 жыл бұрын
Isn't it two sum problem?
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Yup
@madhukareppalapelly7253
@madhukareppalapelly7253 3 жыл бұрын
yes we can solve this using two pointer technique also
@sagarsingh-uh6xd
@sagarsingh-uh6xd 2 жыл бұрын
unordered_map hash; for (int i = 0; i < n; i++) { int numberToFind = x - arr[i]; //if numberToFind is found in map, return them if (hash.find(numberToFind) != hash.end()) { return true; } //number was not found. Put it in the map. hash[arr[i]] = i; } return false; plz explain this . second comment ??
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
Wahh ekdum sahi 😊
@MilindGupta
@MilindGupta 3 жыл бұрын
Is it two sum problem of leetcodr?
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Yess
@maniish-sgh
@maniish-sgh 14 күн бұрын
Done !!
@surgeonofdeath8199
@surgeonofdeath8199 2 жыл бұрын
// whose sum is equal to the given value bool hasArrayTwoCandidates(int arr[], int n, int x) { // code here unordered_set mpp; int flag=0; for(int i=0;i
@kayumkhan_kks
@kayumkhan_kks 7 ай бұрын
10:5 hum index bhi check kar skthe hai
@Ankur-zd4db
@Ankur-zd4db 3 жыл бұрын
Bhaiya java mai bhi bta diya karo.
@anujpradhan480
@anujpradhan480 Жыл бұрын
Sirf if size of the arr is 1???
@HelloWorldbyprince
@HelloWorldbyprince Жыл бұрын
Then pair kaise banega ? ye puchna chah rhe ho app
@anujpradhan480
@anujpradhan480 Жыл бұрын
@@HelloWorldbyprince ok sir.
@316_mohammadahadkhan7
@316_mohammadahadkhan7 2 жыл бұрын
unordered_map s; for (int i=0;i
@prakhar266
@prakhar266 Жыл бұрын
done
@HelloWorldbyprince
@HelloWorldbyprince Жыл бұрын
good
@masumali8356
@masumali8356 Жыл бұрын
sort(arr,arr+n); int i=0; int j=n-1; while(i
@ishandas2674
@ishandas2674 2 ай бұрын
you have a very good video but you talk unnecessary things in between which breaks the concentration. kindly work on it otherwise is fire!
@HelloWorldbyprince
@HelloWorldbyprince 2 ай бұрын
Will try to do better in future videos 🙏
@oqant0424
@oqant0424 2 жыл бұрын
if u are someone jisko ye sab ni samjh aa raha.............bhai plz jake puri playlist khatam karo.....sawal makkhan ki tarah solve hone lagenge ...i can bet u!!!!!!!!!!!!! thank me later :)
@ayushdhiman8329
@ayushdhiman8329 5 ай бұрын
yai thik hai ya nhi class Solution { boolean hasArrayTwoCandidates(int arr[], int x) { // code here HashSet set = new HashSet(); for(int i=0; i
@tusharkarle7870
@tusharkarle7870 3 жыл бұрын
Bhai Insta Dekh lo please
How to have fun with a child 🤣 Food wrap frame! #shorts
0:21
BadaBOOM!
Рет қаралды 17 МЛН
Andro, ELMAN, TONI, MONA - Зари (Official Audio)
2:53
RAAVA MUSIC
Рет қаралды 8 МЛН
Hash Tables and Hash Functions
13:56
Computer Science Lessons
Рет қаралды 1,6 МЛН
Best Books for Learning Data Structures and Algorithms
14:01
Engineering with Utsav
Рет қаралды 380 М.
Implement two Stacks in an Array | Stack | Love Babbar DSA Sheet | Amazon🔥
14:02
Yogesh & Shailesh (CodeLibrary)
Рет қаралды 43 М.
How to have fun with a child 🤣 Food wrap frame! #shorts
0:21
BadaBOOM!
Рет қаралды 17 МЛН