op admi ho bhai sahi mein,bhai hindi me lkin samjhane ke baad alag hi feel aata hai.
@HelloWorldbyprince3 жыл бұрын
Exactly 😂😌
@vinayjoshi87148 ай бұрын
Bhai question padha aur ho gaya Bina dekhe solution aapke padhane ki wajah se hi kar paya mein Thank you bhaiya ❤
@nayansinghal232 жыл бұрын
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🥰🥰🥰
@HelloWorldbyprince2 жыл бұрын
Thanks a lot Nayan Please, if possible then share this channel in your college, groups, or LinkedIn bcoz it's cost nothing to you 😀
@nayansinghal232 жыл бұрын
@@HelloWorldbyprince bhaiya aapke channel ke bare m sabko pata h junior Senior everyone. ❣️❣️
@oqant04242 жыл бұрын
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!!!!!!!!!!!!!!!!!
@bhupeshpattanaik71503 жыл бұрын
Congratulations for the sponsorship 🥳🔥
@PriyankaJaiswal-gf1rw3 жыл бұрын
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
@HelloWorldbyprince3 жыл бұрын
Keep learning priyanka After this playlist of hashing You feel more confident 😃
@PriyankaJaiswal-gf1rw3 жыл бұрын
Yes bhaiya.Tysm
@Man_of_Culture.3 жыл бұрын
Hashing is good but it's solution with sorting is best .
@shubhamgupta97783 жыл бұрын
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-lz1zq3 жыл бұрын
Bro >1 ka conditions kaha hai ...! If sum =8 and array might have 4 as element then it will count twice of that element !!
@mithileshkumarsingh2222 жыл бұрын
USING UNORDERED SET unordered_set st; for(int i=0; i
@HelloWorldbyprince2 жыл бұрын
Nice buddy 🔥
@cr7johnChan3 жыл бұрын
Thanl you bhaiya for guiding !
@HelloWorldbyprince3 жыл бұрын
Thanks for the supporting me
@kritisingh31942 жыл бұрын
Java solution for the question: boolean hasArrayTwoCandidates(int arr[], int n, int X) { Map mp = new HashMap(); for(int i=0; i
It can be done by unordered_set bool hasArrayTwoCandidates(int arr[], int n, int x) { unordered_set s; for(int i=0;i
@kumarabhishek38905 ай бұрын
we can use a hash set too just temporarily remove that element before assessing it.
@oqant04242 жыл бұрын
thanks bhaiya for always inspiring us :)
@HelloWorldbyprince2 жыл бұрын
Always welcome
@nagabasavannas14403 жыл бұрын
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 ??????
@HelloWorldbyprince3 жыл бұрын
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
@ovokteb96713 жыл бұрын
Two pointer approach would also be a optimal solution for this problem:) And thank u bhaiya ❤ for this awesome playlist on Hashing 🙌
@altafmazhar77623 жыл бұрын
No it wont to use two pointer we first have to sort the array
@HelloWorldbyprince2 жыл бұрын
Most welcome 😊
@HelloWorldbyprince2 жыл бұрын
u r right
@only_for_fun1234r Жыл бұрын
using set ----------- bool hasArrayTwoCandidates(int arr[], int n, int x) { set st; for(int i=0;i
@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
@shashwatdev23712 жыл бұрын
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
@HelloWorldbyprince2 жыл бұрын
yup
@dudlavarumakanth46713 жыл бұрын
super prince sir
@HelloWorldbyprince3 жыл бұрын
Welcome 😃😃
@NIKHILSINGH-kg2du2 жыл бұрын
good explanation
@HelloWorldbyprince2 жыл бұрын
Thanks a lot nikhil
@deepanshu4769 Жыл бұрын
alternate solution bool hasArrayTwoCandidates(int arr[], int n, int target) { unordered_map umap; for(int i=0;i
@princesharma76232 жыл бұрын
SIMPLE SOLUTION unordered_mapm; for(int i=0; i
@aryangupta72903 жыл бұрын
Alternatively start graph as well, sir.
@HelloWorldbyprince3 жыл бұрын
Yeah buddy I will try
@shivamsinha55543 жыл бұрын
my approach hope this will help you
@amitprasadiitg25642 жыл бұрын
CPP unordered_mapm; for(int i=0;i
@HelloWorldbyprince2 жыл бұрын
nice bro ..keep learning like this
@pratik.7842 жыл бұрын
Set se easily ho jayega
@oqant04242 жыл бұрын
11/18 done (8.12.22)
@AinasDiaries3 жыл бұрын
Isn't it two sum problem?
@HelloWorldbyprince3 жыл бұрын
Yup
@madhukareppalapelly72533 жыл бұрын
yes we can solve this using two pointer technique also
@sagarsingh-uh6xd2 жыл бұрын
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 ??
@HelloWorldbyprince2 жыл бұрын
Wahh ekdum sahi 😊
@MilindGupta3 жыл бұрын
Is it two sum problem of leetcodr?
@HelloWorldbyprince3 жыл бұрын
Yess
@maniish-sgh14 күн бұрын
Done !!
@surgeonofdeath81992 жыл бұрын
// 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_kks7 ай бұрын
10:5 hum index bhi check kar skthe hai
@Ankur-zd4db3 жыл бұрын
Bhaiya java mai bhi bta diya karo.
@anujpradhan480 Жыл бұрын
Sirf if size of the arr is 1???
@HelloWorldbyprince Жыл бұрын
Then pair kaise banega ? ye puchna chah rhe ho app
@anujpradhan480 Жыл бұрын
@@HelloWorldbyprince ok sir.
@316_mohammadahadkhan72 жыл бұрын
unordered_map s; for (int i=0;i
@prakhar266 Жыл бұрын
done
@HelloWorldbyprince Жыл бұрын
good
@masumali8356 Жыл бұрын
sort(arr,arr+n); int i=0; int j=n-1; while(i
@ishandas26742 ай бұрын
you have a very good video but you talk unnecessary things in between which breaks the concentration. kindly work on it otherwise is fire!
@HelloWorldbyprince2 ай бұрын
Will try to do better in future videos 🙏
@oqant04242 жыл бұрын
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 :)
@ayushdhiman83295 ай бұрын
yai thik hai ya nhi class Solution { boolean hasArrayTwoCandidates(int arr[], int x) { // code here HashSet set = new HashSet(); for(int i=0; i