Eniola Bakareeniola-bakare.hashnode.dev路Dec 4, 2024An Introduction to Essential Data StructuresINTRODUCTION If you鈥檙e like me, you鈥檝e most likely considered how best to arrange your wardrobe to easily retrieve a favourite wear when you have under one hour to get ready, or how best to avoid turning out your entire wardrobe as a heap on the floo...Discuss路12 likes路57 readsA Working Understanding of Data Structures and Algorithms (DSA)data structures
Saumyaa Gargsaumyaagarg.hashnode.dev路Dec 3, 2024Day 6: Arrays - ProblemsWelcome to Day 6 of my 100 Days of DSA challenge! 馃殌 Today was all about diving deeper into the world of arrays. I focused on solving five challenging problems that tested my understanding of advanced array manipulations. Each problem pushed me to th...Discuss路1 likeWeek 1DSA
Anuj Kumar Upadhyayanuj1.hashnode.dev路Dec 3, 2024Algorithms List For FAANGMHere is a categorized list of algorithms and techniques that are essential for cracking interviews at FAANGM (Facebook/Meta, Amazon, Apple, Netflix, Google, Microsoft) companies. These algorithms are grouped based on data structures and problem types...Discuss路10 likesAlgorithmsfaangm
Zamal Shah1d-array.hashnode.dev路Dec 1, 2024Array ( 1-Dimensional Array)It is collection of homogenius [same type] variables. Array is nothing but collection of contiguous memory allocation, where we can store and manage more than one value of same type under one name. It is derived data type. It is an Implicit / Inte...Discuss路1 likearray
Saumyaa Gargsaumyaagarg.hashnode.dev路Nov 29, 2024Day 3: Arrays AdvancedWelcome to Day 3! Today, I鈥檒l be tackling advanced array problems that require a deeper dive into problem-solving. These challenges focused on algorithmic thinking and efficient data handling techniques. Below, you鈥檒l find the problems I solved and t...Discuss路1 likeWeek 1DSA
Saumyaa Gargsaumyaagarg.hashnode.dev路Nov 28, 2024Day 2: Arrays BasicsIn Day 2 of my 100 Days of DSA challenge, I delved into the world of arrays, one of the most fundamental data structures. Arrays form the backbone of countless algorithms, and understanding their operations is key to efficient problem-solving. Today,...Discuss路2 likesWeek 1DSA
Sumit Adhikarisumit071.hashnode.dev路Nov 26, 2024Create Polyfils for array methods map,reduce,filterRewriting JavaScript: The Fun World of Polyfills for map, filter, and reduce 馃専 JavaScript's array methods like map, filter, and reduce are like the Swiss Army knives of coding. But what if they didn鈥檛 exist? Imagine coding in a world where you had t...DiscussJavaScript
Pankaj Kholiyadatatype.hashnode.dev路Nov 26, 2024Finding the Largest Element in an ArrayOverview The goal is to find the largest element in an array. The approach involves iterating through the array and updating a variable (largest) whenever a larger element is encountered. Algorithm Description Initialize a variable (largest) with th...DiscussData Structure And Algorithmkth-largest-element
Pankaj Kholiyadatatype.hashnode.dev路Nov 26, 2024Array IterationBrute force approach Iterating Through an Array in C++ and comparing When you have an array and you need to compare each element with every other element, you can achieve this by iterating through the array and comparing each element with the rest. T...DiscussData Structure And Algorithmarray
Pankaj Kholiyadatatype.hashnode.dev路Nov 26, 2024Arrays and StringsArrays and Strings Arrays An array is a collection of elements, each identified by an index or a key. In C++, arrays can hold elements of the same data type. They provide a convenient way to store and access multiple values under a single name. Strin...DiscussData Structure And Algorithmarray