Anmol singhjavascripts.hashnode.dev·7 minutes agoA Complete Guide to String Indices and Concatenation in JavaScriptUnderstanding String Indices and Concatenation in JavaScript Strings in JavaScript are versatile and offer several features for accessing individual characters and combining multiple strings. Let’s break down two important concepts: String Indices an...string operations
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 14, 2024StringBuilder in C#In C#, the StringBuilder class is a mutable sequence of characters designed for efficient string manipulation. Unlike String objects, which are immutable, StringBuilder allows you to modify its contents without creating new instances. This makes it p...C#
aryan sharmaaryansharma.hashnode.dev·Dec 8, 2024WTF are Strings in JS?Hey Welcome, Techies👋🏼 Hello everyone, my name is Aryan Sharma, and I hope you're all doing well. I'm thrilled to begin this JavaScript blog on Strings in JavaScript for absolute beginners. You can find my other blogs on JavaScripthere↗️ Javascrip...string
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 5, 2024Variables and Data Types in C#Variables A variable is a named storage location in memory that holds a value. In C#, you must declare a variable before using it. data_type variable_name; Data Types C# has a rich set of data types to represent different kinds of data. 1. Value Type...reference datatypes
Tapan Rachchhtapanrachchh.hashnode.dev·Dec 4, 20242825. Make String a Subsequence Using Cyclic Incrementsclass Solution: def canMakeSubsequence(self, str1: str, str2: str) -> bool: if len(str2) > len(str1): return False str2 = list(str2) head = str2[0] def getIncrementedChar(char): if char...Python
Saumyaa Gargsaumyaagarg.hashnode.dev·Dec 2, 2024Day 5: Strings AdvancedWelcome to Day 5 of my 100 Days of DSA challenge! Today, I focused on solving five challenging string-based problems. These problems helped me enhance my skills in string manipulation, pattern recognition, and efficient problem-solving techniques. Ta...10 likesWeek 1DSA
Saumyaa Gargsaumyaagarg.hashnode.dev·Nov 30, 2024Day 4: Strings BasicsWelcome to Day 4 of my 100 Days of DSA challenge! Today, I focused on solving five intriguing string-based problems. Strings are at the heart of many programming challenges, and mastering them is key to tackling a variety of real-world scenarios and ...10 likesWeek 1DSA
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...Data Structure And Algorithmarray
Mihai Popescujavainterviewprep.hashnode.dev·Nov 26, 2024Java StringsA String variable contains a collection of characters surrounded by double quotes. Creation In Java, there are several ways to create and manage strings, depending on your use case. Here's a detailed overview of the most important: 1. Using String Li...Java
Tushar Panttusharpant.online·Nov 24, 2024Day 5 of 100 Days of DSA: Strings AdvancedToday's challenges were focused on advanced string manipulation and problem-solving techniques. Below is the overview of the problems tackled on Day 5. 1. Check if Two Strings Are Anagrams An anagram is formed by rearranging the characters of one st...100 days of DSADSA