Tuanhdotnettuanhnet.hashnode.dev·Jan 13, 2025Secrets of Java's String PoolSource: Secrets of Java's String Pool 1. Introduction to Java's String Pool In Java, strings are a fundamental part of programming. The String Pool, also known as the String Intern Pool, is a special memory area where Java stores string litera...string
Tapan Rachchhtapanrachchh.hashnode.dev·Jan 11, 20251400. Construct K Palindrome Stringsclass Solution: def canConstruct(self, s: str, k: int) -> bool: l = len(s) if l < k: return False if l == k: return True c = Counter(s) oddCount = 0 for e in c: ...Python
Ibrahim Sifatibrahimsifat.com·Jan 4, 2025Strings and StringBuilder in Java: A Comprehensive Guide In Banglaকল্পনা করো তুমি "দারাজ" এ কাজ করছো। তোমার কাজ হচ্ছে প্রোডাক্টের নাম, প্রাইস, ডিসক্রিপশন ম্যানেজ করা। এখন দেখো - প্রোডাক্টের নাম "Samsung M33" কে তুমি যেভাবে স্টোর করছো, ঠিক একইভাবে Java-তেও String ব্যবহার করে টেক্সট স্টোর করা হয়। String: প্রথম পরিচয...Ibrahimsifat
Anmol singhjavascripts.hashnode.dev·Dec 29, 2024A 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