GFG POTD: 12/10/2023 | Duplicate Subtree in Binary Tree | Problem of the Day GeeksforGeeks

  Рет қаралды 1,447

GeeksforGeeks Practice

GeeksforGeeks Practice

Күн бұрын

Пікірлер: 4
@GeeksforGeeksPractice
@GeeksforGeeksPractice Жыл бұрын
Solution Function Link: ide.geeksforgeeks.org/online-cpp-compiler/f478cf93-68c8-4518-9b1f-d4de3c73bfe2
@Zenetz-le4mq
@Zenetz-le4mq 4 ай бұрын
Bdhia bhai
@akhilesh_ku
@akhilesh_ku 3 ай бұрын
Use this method instead string solve(Node* root,unordered_map &mp){ if(root == NULL) return "N"; if(root->left == NULL && root->right == NULL){ string s = to_string(root->data); return s; } string s = to_string(root->data) + "," + solve(root->left,mp) + "," + solve(root->right,mp); mp[s]++; return s; } int dupSub(Node *root) { unordered_map mp; solve(root,mp); for(auto i:mp){ if(i.second > 1) return 1; } return 0; }
Find Duplicate Subtrees - Leetcode 652 - Python
14:33
NeetCodeIO
Рет қаралды 20 М.
What type of pedestrian are you?😄 #tiktok #elsarca
00:28
Elsa Arca
Рет қаралды 32 МЛН
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 94 МЛН
GFG POTD: 13/10/2023 | Floor in BST | Problem of the Day GeeksforGeeks
9:24
GeeksforGeeks Practice
Рет қаралды 220
2.6.3 Heap - Heap Sort - Heapify - Priority Queues
51:08
Abdul Bari
Рет қаралды 2,2 МЛН
Sliding Window Technique - Algorithmic Mental Models
36:45
Ryan Schachte
Рет қаралды 362 М.
GFG Weekly Coding Contest - 180 Post Analysis | GeeksforGeeks Practice
43:30
GeeksforGeeks Practice
Рет қаралды 898