Ademola Thompsonsuperhero.hashnode.dev·Dec 18, 2024Understanding Arrays and Slices in GolangIn Golang (Go, for short), arrays and slices are fundamental data structures that allow developers to efficiently store and manage collections of data. Although, both data structures have many similarities, it is important to understand their differe...3 likesGo Language
Jyotiprakash Mishrablog.jyotiprakash.org·Dec 18, 2024Arrays, Strings, and StringBuilder in JavaWhen diving into Java programming, the foundational tools for handling data and text are Arrays, Strings, and Builders. Each serves a distinct purpose, and together, they form the backbone of efficient data processing and text manipulation. Arrays of...248 readsJava
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 12, 2024Default Method of Array1. Array.Sort() 🧹: Sorts the elements of an array in ascending order. int[] numbers = { 3, 1, 4, 1, 5, 9 }; Array.Sort(numbers); // numbers will be { 1, 1, 3, 4, 5, 9 } 2. Array.Reverse() 🔄: Reverses the order of elements in an array. Array.Revers...array
Dana Ciocandanaciocan.com·Dec 3, 2024Exploring new JavaScript array methodsI stumbled upon some really useful new(ish) array methods in the JavaScript spec that I hadn’t encountered before. Some of them seem pretty nifty, so I thought I’d write a little blog post to share them with you. Let’s go oldest to newest and chat th...33 readsJavaScript
Vivek Kumarbewake24.hashnode.dev·Dec 1, 2024Diving dipper into arrays, Packed vs HoleyPacked Array and Holey Array So, I guess you are here after watching Hitesh Sir, tutorial on javascript, If you are at beginner or intermediate level you must do that. Also I’m embedding his video below. Now lets discuss. https://youtu.be/ZRS485LxX0s...2 likesJavaScript
Kanchan Raikanchanraiii.hashnode.dev·Nov 25, 2024Day 6: 100 Days of DSAWelcome to Day 6 of my 100 Days of DSA challenge! Today, I solved five problems focused on arrays. Here's a quick look at the questions I tackled and how I approached them 🤖✨ Check out my GitHub repository for all my solutions and progress. Let’s ke...100 Days of DSADSA
Kanchan Raikanchanraiii.hashnode.dev·Nov 21, 2024Day 2 : 100 Days Of DSAWelcome to Day 2 of my 100 Days of DSA challenge! Today, I solved five problems focused on arrays. Here's a quick look at the questions I tackled and how I approached them 🤖✨ Check out my GitHub repository for all my solutions and progress. Let’s ke...1 like100 Days of DSADSA
Abhishek Dubeylearning-in-public-week-1.hashnode.dev·Nov 17, 2024Week 2 updates"Life is full of twists and turns; it's how we navigate them that defines our journey." After a successful Week 1, I was all geared up to replicate the same momentum in Week 2. Much like a car that takes a little extra time to start in winter, beginn...data structure and algorithms
Hassanigocoding.hashnode.dev·Nov 11, 2024JavaScript Array Methods20 JavaScript Array Methods You Need to Know JavaScript is a powerful language, and one of the key reasons for its versatility is the Array object. With array methods, we can perform a ton of operations on arrays—like transforming data, flattening ar...1 likeJavaScript
Think Throothinkthroo.hashnode.dev·Oct 18, 2024Create a unique array using Set() in JavaScript.In this article, we analyze how you can create a unique array using new set in JavaScript, inspired by a code reference from TypeDoc. Let’s first understand this unique function in the above image with an example and then we will look at how this is...JavaScript