Vandit Dubeyvanditdubey.hashnode.dev·Oct 25, 2023Become a master of Hashmap by just doing this !!!This blog contains everything which you need to study to master Hashmap. Just follow the topics step-by-step and you will be good to go. Basics of HashMap Inside Hash data structures we have the following available Why HashMap ? Stores data in terms...Java
Nilesh Saininileshsaini.hashnode.dev·May 1, 2023Two SumThere are countless ways to approach this problem and optimize your solution. In this article, we’ll explore various strategies to tackle this problem. Let’s see the problem statement first. Problem Statement: Given an array of integers nums and an ...leetcode
Iman Roustairousta.hashnode.dev·Apr 13, 2023JavaScript Map and WeakMapIn JavaScript, Map is a built-in object that provides an easy way to store and manipulate data in key/value pairs. Map vs. Object The main difference between a Map and an Object in JavaScript is the type of their keys, as well as how they store and m...370 readsJavaScript