Ekemini Thompsonekeminithompson.hashnode.dev·Nov 17, 2024Arrays and Strings: The Sliding Window challengeImagine a bank in Nigeria that has a mobile banking app, where customers perform several transactions throughout the day. The bank needs to identify certain patterns in a customer's transaction behavior. For instance, the bank may want to identify if...Discussdata structures and algorithmsliding window
Nikhil Ramtekegit-command.hashnode.dev·Nov 15, 2024Chapter 2 : Mastering Arrays: A Key to Cracking FAANG DSA InterviewsWelcome to Chapter 2 of our DSA in Java journey! Today, we'll delve into arrays, one of the fundamental building blocks of programming and a crucial concept for FAANG interview success. 2.1: What are Arrays? An array is a data structure used in progr...Discuss·10 likes·32 readsJava
Sandeep Singhsandeepdevhub.hashnode.dev·Nov 13, 2024Rest Parameters vs. Spread Syntax: Simplified Explanation-Hi 👋 fellow developers! My name is Sandeep Singh, and I am an aspiring web developer. Today, I am back with an interesting and useful JavaScript concept: Rest Parameters and Spread Syntax. In this article, I will aim to make these two concepts clear...Discussjavscript
Arsalan Adeeblogicbricks.hashnode.dev·Nov 12, 2024Flattening an array and little more.Interviewing coders requires smart and insightful questions to differentiate between those who truly understand coding concepts and those who rely solely on memorised answers. Below are a series of array manipulation questions designed to challenge c...Boniface Gordian and 1 other are discussing this2 people are discussing thisDiscuss·14 likes·42 readsJavaScript
Abhishek Dubeylearning-in-public-week-1.hashnode.dev·Nov 10, 2024Week 1 updatesWe all know the feeling: there’s something we should be doing, but we keep pushing it aside—whether it’s a task we dread or something we’re simply avoiding. For me, this was learning DSA. I had the resources, I knew the importance of it, but procrast...Discuss·46 readsProgramming Blogs
Anower Hossainanower77.hashnode.dev·Nov 6, 2024Just [Array]ICPC Assiut University Community Newcomers Training, Do Your Best A. Summation void solve() { int n; cin>>n; ll arr[n]; ll sum = 0; for(int i=0; i<n; i++) { cin >> arr[i]; sum += arr[i]; } cout<< abs(sum) << '\...Discussarray
gayatri kumargeekee.hashnode.dev·Nov 2, 2024Advanced Array Methods: Mapping the Future!Imagine you’re about to embark on an epic journey, where you can shape the world around you. You’re given a map, and along the way, you decide which paths to take, what to gather, and how to calculate the resources you collect. In JavaScript, advance...Saanvi Kumar and 1 other are discussing this2 people are discussing thisDiscuss·52 likesWeb Developmentjs
Samir Mishrasamirmishra27.hashnode.dev·Nov 2, 2024These 4 New JavaScript Methods are a game changer!In July 2023, ECMAScript released several new specifications for JavaScript. Some of the features include new Array methods that do not modify the existing array. In this blog, we will talk about three of them (one from 2024) that you must know if yo...DiscussJavaScript
gayatri kumargeekee.hashnode.dev·Nov 1, 2024Collections Galore: Arrays Explained!Imagine you’re hosting a party, and all your friends are lined up in a neat list. You want to know who’s attending, add new friends, remove a few, or maybe even shuffle them around. In JavaScript, arrays are the perfect tool for managing collections ...Discuss·50 likesWeb Developmentjs
Think Throothinkthroo.hashnode.dev·Nov 2, 2024arrayToDict function in tRPC source codeIn this article, we analyze arrayToDict function found in tRPC source code. // https://github.com/trpc/trpc/pull/669 function arrayToDict(array: unknown[]) { const dict: Record<number, unknown> = {}; for (let index = 0; index < array.length; index+...DiscussJavaScript