All Posts

Leetcode 211: Design Add and Search Words Data Structure

You are tasked with creating a data structure that allows adding words and checking if a word matches any previously added word, with support for the wildcard ‘.’ character.

Leetcode 242: Valid Anagram

You are given two strings, s and t. Determine if t is an anagram of s. Two strings are considered anagrams if they contain the exact same characters, but possibly in a different order.

Leetcode 316: Remove Duplicate Letters

Given a string ’s’, remove duplicate letters so that every letter appears once and only once. The result should be the smallest lexicographical order among all possible results.

Leetcode 318: Maximum Product of Word Lengths

Given a list of words, return the maximum product of lengths of two words such that the two words do not share common letters. If no such pair exists, return 0.

Leetcode 344: Reverse String

You are given a list of characters s. Your task is to reverse the order of characters in the list in-place, modifying the input list directly and without using any extra memory.

Leetcode 383: Ransom Note

Given two strings ransomNote and magazine, return true if ransomNote can be constructed by using the letters from magazine. Each letter in magazine can only be used once.