EEktainekta.hashnode.dev·Oct 30, 2023 · 3 min readMy Experience at DevFest'23I am not a travel person. So, I never bothered to be a part of any Technical Event. But, lately when I see photos and videos of events and people geeking out with each other, I started having an urge to be in a technical event, meet new people and le...00
EEktainekta.hashnode.dev·Aug 24, 2023 · 3 min readGetting started with Web DevelopmentIf you have ever wondered how different websites like Amazon, Facebook, and Twitter, work and are built, and want to learn building something as crazy as these, You are at the right place. In this blog, I will be sharing a beginner's guide to get sta...00
EEktainekta.hashnode.dev·Feb 25, 2023 · 2 min readMerge 2 BSTApproach 1: Using Vector Time Complexity :- O(n+m) Space Complexity :- O(n+m) Self-explanatory Code:- void inorder(TreeNode<int> *root, vector<int> &in){ if(root == NULL){ return; } inorder(root->left, in); in....00