Skip to main content

33 docs tagged with "Strings"

View all tags

Anagram of String

This document covers methods to check if two strings are anagrams of each other in various programming languages.

Binary String

This document provides solution on how to find substrings of a binary string in various programming languages.

Check for Subsequence

This document covers methods to check if one string is a subsequence of another string in various programming languages.

Longest Common Prefix of Strings

This tutorial covers the solution to the Longest Common Prefix problem from the GeeksforGeeks website, featuring implementations in C++.

Most Common Word

This document provides a solution to the Most Common Word problem, where we need to find the most frequent word in a paragraph that is not in a list of banned words.

Multiple-Strings(LeetCode)

Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as a string.

Remove Character

This document covers methods to remove a characters from the first string that are present in the second string in various programming languages.

Remove Consecutive Characters

This document covers methods to remove consecutive duplicate characters from a string in various programming languages.

Remove Duplicates

A solution to the problem of finding the unique characters in the given string

Repeated Character

This document covers methods to find the first repeated character in a string in various programming languages.

Reverse String

This is a solution to the Reverse String problem on LeetCode.

Sum of Numbers in String

This document covers methods to calculate the sum of all numbers embedded in a string in various programming languages.

Total Appeal of a String

This document provides a solution to the Total Appeal of a String problem, where we need to calculate the total appeal of all substrings of a given string.

Uncommon Characters

This document covers methods to find uncommon characters between two strings in various programming languages.