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...241 readsJava
Anuj Kumar Upadhyayanuj1.hashnode.dev·Dec 3, 2024Algorithms List For FAANGMHere is a categorized list of algorithms and techniques that are essential for cracking interviews at FAANGM (Facebook/Meta, Amazon, Apple, Netflix, Google, Microsoft) companies. These algorithms are grouped based on data structures and problem types...10 likesAlgorithmsfaangm
Ankita Lunawatcloudhub2295.hashnode.dev·Nov 30, 2024Let's Dive into Shell Scripting!A shell script is a computer program intended to run by a Unix-like shell, which is a command-line interpreter; it is essentially a text file containing a series of commands that the shell interprets and executes. Why Use Shell Scripts? Shell scripts...shell script
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
Kanchan Raikanchanraiii.hashnode.dev·Nov 24, 2024Day 5: 100 Days of DSAWelcome to day 5 of 100 days of DSA challenge where in I’ll be solving five string based questions. Checkout my github repository where I post the solutions of these questions. Let’s dive in!🍀 1. To check if two strings are anagrams or not. This can...1 like100 Days of DSADSA
Tushar Panttusharpant.online·Nov 23, 2024Day 4 of 100 Days of DSA: Strings BasicsStrings are one of the most fundamental and frequently used data types in programming. On Day 4 of the 100 Days of DSA challenge, I worked on string manipulation problems, sharpening my skills for handling text-based tasks. Below are the problems and...100 days of DSADSA
Kanchan Raikanchanraiii.hashnode.dev·Nov 23, 2024Day 4: 100 Days of DSAWelcome to Day 4 of my 100 Days of DSA challenge! Today, I solved five problems focused on strings. 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 k...1 like100 Days of DSAStrings
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...3 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"...Core 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...1 likeCore Javastringprograms