Nikhil Ramtekegit-command.hashnode.dev·Nov 17, 2024Chapter 3: FAANG-Style String Problems: Interview Prep for Top Tech CompaniesWelcome to Chapter 3 of our DSA in Java journey! Today, we’re diving into strings—one of the most crucial topics for acing coding interviews. Mastering string problems is essential for success in technical interviews, as they test a wide range of ski...Discuss·2 likesJava
Ganesh NethulaforCode With Ganeshcodewithganesh.hashnode.dev·Nov 14, 2024Comprehensive List of String Programming QuestionsWrite a program that checks if a given string is a palindrome. Ignore case and spaces. For example, "A man a plan a canal Panama" should return true Write a program that finds the most frequently occurring character in a string. Ex: in "programming"...DiscussCore JavaJava string manipulation
Nethula GaneshforCode With Ganeshcodewithganesh.hashnode.dev·Nov 10, 2024String programs in JavaComprehensive List of String Programming Questions Basic Questions Reverse a String Check if a String is a Palindrome Count the Number of Vowels and Consonants Count the Occurrence of Each Character in a String Find the First Non-Repeating Char...Discuss·1 likeCore Javastringprograms
Sharon Jonallagaddasharonlearns.hashnode.dev·Nov 9, 2024Variables in Bash ScriptingIn Bash scripting, variables allow us to store information for later use, minimizing repetition and enable us to save command outputs directly into variables. For example, the command file =$(ls) will execute ls, store its output in the file variable...DiscussShellBash
Tapan Rachchhtapanrachchh.hashnode.dev·Nov 3, 2024796. Rotate Stringclass Solution: def rotateString(self, s: str, goal: str) -> bool: return len(goal) == len(s) and goal in s * 2DiscussPython
Alissa Lozhkinalissalozhkin.hashnode.dev·Oct 22, 2024Strings in GoStrings are sequences of characters used to represent text, and they can contain letters, digits, and special characters. In Go, strings are immutable. This post will go over the steps on how to declare a string, and it will also go over basic string...DiscussGo Language
Shrey Dikshantshreysblog.hashnode.dev·Oct 10, 2024Essential String Methods in Python – Part 2 🔑Introduction In the previous blog, we explored a few commonly used string methods. In this blog, we’ll continue our journey through Python’s string methods, focusing on additional techniques that help you clean, check, and format strings effectively....DiscussMastering Python Strings: From Basics to Advanced SlicingStrings
Shrey Dikshantshreysblog.hashnode.dev·Oct 6, 2024Essential String Methods in Python – Part 1 🔍Introduction String methods in Python make it easy to manipulate and process text-based data. These built-in methods allow you to perform a variety of operations, such as searching, transforming, and validating strings. In this blog, we’ll cover some...DiscussMastering Python Strings: From Basics to Advanced SlicingStrings
Keerthi Ravilla Subramanyamkeerthiravillasubramanyam.hashnode.dev·Oct 5, 2024Strings in Data Structures: Essential Information and TipsStrings are a fundamental data structure in programming that plays a crucial role in handling text-based data. From user inputs and file handling to data processing and representation, strings are essential in virtually every application. They provid...Discuss·10 likesData structures courseStrings
Shrey Dikshantshreysblog.hashnode.dev·Oct 4, 2024Advanced String Slicing Techniques 🛠️Introduction Now that we understand the basics of slicing, let’s explore more advanced techniques. We’ll learn how to deal with nested slicing, dynamic slicing, and some interesting slicing tricks. Dynamic Slicing Based on Length 📏 You can dynamical...DiscussMastering Python Strings: From Basics to Advanced SlicingPython, data types, lists, tuples, dictionaries, sets, booleans, type conversion, namedtuples, data classes, arrays, mutable, immutable, coding best practices, Pythonic coding, advanced Python structures