beautiful explanation....gfg explanation ise bhi bht acha aur easier ..great one bhai!
@satyamkumar64692 жыл бұрын
Great explanation ,till now I was just wondering that why we are doing sum -arr[i] but now it is all clear thanks alot!
@jk47nitk Жыл бұрын
simple, best and less taking time explanation video
@udaytewary38092 жыл бұрын
Really thankyou bhaiya for such a easy explanation although i have not study map but your easy explanation made it easier for me to understand
@nehagunapooti27319 ай бұрын
Forever grateful for you bhai, because of you I got my first job
@CodeLibrary9 ай бұрын
Congrats Neha!
@kulyashdahiya2529 Жыл бұрын
Great one, For python use counter() which is a subclass of dict.
@vikalpjain10982 жыл бұрын
I tried by implementing this with input 1,1,1,-1,-1,-1 is giving 6 output, but actual output is 9.
@aeroabrar_312 жыл бұрын
Bhai constraints me saare elements positive de rakhe hai.. This approach wont work for negatives i guess.
@toshanverma1084 Жыл бұрын
sort then try this it will work
@Curiousss_Shivammm Жыл бұрын
bhaiya agr iski jagah 2 pointer approach use krenge to kya tc jyada ho jayegi array ko sort krne ke chakkar mein
@amankhanoria20533 жыл бұрын
good work brother aapki wajah se data structure seekh paya mai
@RonitSagar2 жыл бұрын
bhaiya aap pentab kaun saa use krte ho...can you please mention the link in reply
@mohammedyasser47172 жыл бұрын
intuitive approach and good explanation ! thanks
@vivek4312 Жыл бұрын
great explaination brother!
@explorewithshobhit91572 жыл бұрын
Bhai boht badiya 👏🔥
@vaneelakhatri2 жыл бұрын
Thanks for this solution 🙏🏻🙏🏻🙏🏻🙏🏻
@andiamakaza242 жыл бұрын
yup
@justin.j44402 жыл бұрын
Well explained mate!
@maheshwarananbalagan9803 Жыл бұрын
Brute force algorithm not work sir
@pranaymishra44073 жыл бұрын
very clearly explained thanks bhai
@abinayashrikbs6684 Жыл бұрын
you can talk in english throughout the video which will help who doesnt understand hindi.
@mrinmoyhalder72932 жыл бұрын
Interestingly, if it was to print all the pairs then using map also time complexity is O(n^2). because for every element in the given array we need to run a loop upto key_count stored in map. the worst case is [ 2,2,2,2] ans target is 4.
@adityacr7407 Жыл бұрын
Searching in an unordered map is O(1)
@shaikbabasaheb98012 жыл бұрын
Hello sir I am preparing for amazon interview. Can i use python language to code during interview.
@nomaanahmad58513 жыл бұрын
Bhaiya please isko jaldi poora krke dp ko kariye please
@deeptimayeemaharana24482 жыл бұрын
map mein check karne se pehle ki element hai ya nahi, array ko toh map ke andar dala hi nahi...bhaiya samajh nahi aya
@AmanSharma-xq7gv2 жыл бұрын
bhai ji ye mila na question ka ans gfg be text pdh ke to kuch samaj hi ni aa raha tha...Thanks
@sohel46332 жыл бұрын
Your DSA solution video is very helpful 🥰
@pratikghule29952 жыл бұрын
find number of pairs of 5 which can made with natural numbers
@GodOfFaith2 жыл бұрын
Ye kya hai chutiye
@rohandevaki43493 жыл бұрын
what is unordered map ? at 3:11 ? is it on java also?
@bhargav4g5383 жыл бұрын
Bro try dictionary in java
@bhargav4g5383 жыл бұрын
Bro it’s just like dictionaries initially all are false ie zeros so frequencies are adding 2nd above return statement and they are counting inside if when they encounter use dict I use python same doubt came sorted with dict
@altafmazhar77623 жыл бұрын
tru hashmap in java
@oqant04243 жыл бұрын
nice explaination
@AmitDas-hu3gr3 жыл бұрын
Bro love babbar DSA sheet ke baaki problems ke soultions ki video kab aayegi?
@nehalpradhan22292 жыл бұрын
6:00 why didn't you add 7 in map??
@AbdulRahman-tj3wc2 жыл бұрын
because it was greater than k
@akashanand65312 жыл бұрын
awesome explanation
@dhruv20142 жыл бұрын
Nice explanation
@paullater62303 жыл бұрын
Amazing explanation 👏 👌 👍
@sanushgowdabr72173 жыл бұрын
Please Explain concepts in English
@manthan75352 жыл бұрын
plz plz upload for jAVA also
@rickyarya76732 жыл бұрын
// { Driver Code Starts //Initial Template for Java import java.io.*; import java.util.*; public class GFG { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int tc = Integer.parseInt(br.readLine().trim()); while (tc-- > 0) { String[] inputLine; inputLine = br.readLine().trim().split(" "); int n = Integer.parseInt(inputLine[0]); int k = Integer.parseInt(inputLine[1]); int[] arr = new int[n]; inputLine = br.readLine().trim().split(" "); for (int i = 0; i < n; i++) { arr[i] = Integer.parseInt(inputLine[i]); } int ans = new Solution().getPairsCount(arr, n, k); System.out.println(ans); } } } // } Driver Code Ends //User function Template for Java class Solution { int getPairsCount(int[] arr, int n, int k) { // code here int count =0; HashMap mapValue = new HashMap(); for(int i=0; i
@yogeshgavali52383 жыл бұрын
Greatly
@M10-r8q7h2 жыл бұрын
man this was easy prblm😑😑
@ankitparashar87303 жыл бұрын
Only two pointers works when same type of intution ques on codeforces
@rohandevaki43493 жыл бұрын
please write the code in java also
@rickyarya76732 жыл бұрын
// { Driver Code Starts //Initial Template for Java import java.io.*; import java.util.*; public class GFG { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int tc = Integer.parseInt(br.readLine().trim()); while (tc-- > 0) { String[] inputLine; inputLine = br.readLine().trim().split(" "); int n = Integer.parseInt(inputLine[0]); int k = Integer.parseInt(inputLine[1]); int[] arr = new int[n]; inputLine = br.readLine().trim().split(" "); for (int i = 0; i < n; i++) { arr[i] = Integer.parseInt(inputLine[i]); } int ans = new Solution().getPairsCount(arr, n, k); System.out.println(ans); } } } // } Driver Code Ends //User function Template for Java class Solution { int getPairsCount(int[] arr, int n, int k) { // code here int count =0; HashMap mapValue = new HashMap(); for(int i=0; i
@iremtaze6262 Жыл бұрын
Why do you write the title in English even though you are speaking in Hindi? God, there are several videos like these I think I should learn Hindi
@90krishika2 жыл бұрын
Can somebody help me with this c# code? I am not able to get the expected result. Urgent please public static int FindMaxNumForMaxSum(int[] nums, int k) { int result = 0; int N = nums.Length; var map = new Dictionary(); //[1, 5, 3, 3, 3],.. k = 6 for (var i = 0; i < N; i++) { var complement = k = nums[i]; if (map.ContainsKey(complement)) { //we'll increase the map value at this key and assign to result result = map[complement] += 1; } else { map.Add(k - nums[i], nums[i]); } } //end of for loop return result; }
@rishavgupta43122 жыл бұрын
bhai 5 months ho gaye aapne urgent kaha tha
@hasnainraza30152 жыл бұрын
@@rishavgupta4312 ab to 6 month ho gaye
@ganeshpaih24 Жыл бұрын
@@hasnainraza3015 ab tho 11 months hogaye😥
@67_ujjwalsolanki78 Жыл бұрын
@@ganeshpaih24 1 year☹
@Nick-and-Boys2 жыл бұрын
samjh nhi ayya bhai btw iam begginer
@Anonymous-qf6jn Жыл бұрын
bekar explanation kuch smhj ni aaya
@priyabratmail89363 жыл бұрын
Bhaiya ,I have just completed array in dsa.I could do this problem using loops but I don't know what is map . should I learn maps now or I should move ahead?
@CodeLibrary3 жыл бұрын
Yaa STL Sikh lo ekbar
@sudhakarsingh76133 жыл бұрын
luv ki stl series dekhlo
@shivammathur66511 ай бұрын
Bhai saans tho le kam se kam..... Aise kya rurt k aaya tha kya??? 😂
@mereRevyoos3 жыл бұрын
#include #include using namespace std; int main() { vector a={1,2,3,4}; int size_a= a.size(); vector answer; for(int i=0; i
@sudhakarsingh76133 жыл бұрын
bcoz answer is empty
@yourentertainer193 жыл бұрын
r u kidding
@prayagrajwade86993 жыл бұрын
Hope you got your answer why you are not getting the output
@mereRevyoos3 жыл бұрын
@@prayagrajwade8699 we have to use push_back or we have to specify the size of vector a(4)
@prayagrajwade86993 жыл бұрын
@@mereRevyoos no need to specify size for the vector...you just have to push the elements in vector