Skip to main content

11 docs tagged with "strings"

View all tags

Bigrams

Solution for Codeforces 2242A: Bigrams, utilizing a greedy frequency counting approach.

Character Replacement

In this blog post, we'll explore how to solve the character replacement problem using the sliding window technique.

Iskander and Drawings

Solution for Codeforces 2244A: Iskander and Drawings, calculating the maximum time to erase a line.

RemovevomeR

Solution for Codeforces 2241C: RemovevomeR, utilizing a greedy string observation approach.

Strings

Learn about strings in JavaScript, Java, Python, and C++. Understand how to create, manipulate, and use strings effectively in programming.

Strings in C++

A professional guide to string manipulation in C++. Learn about legacy C-style character arrays, the modern std::string class, manipulation methods, safely parsing text streams, and position indexing.

Strings in php

Learn how to work with strings in php including string functions, formatting, searching, replacing, and manipulation techniques.

Trie (Prefix Tree)

A comprehensive guide to the Trie (Prefix Tree) data structure with visual diagrams, Insert, Search, Delete, and AutoComplete implementations in Python, Java, and C++, and practice problems.