All Posts

Leetcode 125: Valid Palindrome

A string is considered a palindrome if, after converting all uppercase letters to lowercase and removing all non-alphanumeric characters, it reads the same forward and backward. Alphanumeric characters include both letters and numbers. Given a string s, return true if it is a palindrome, otherwise return false.

Leetcode 131: Palindrome Partitioning

You are given a string s. Partition the string into all possible substrings such that each substring is a palindrome.

Leetcode 139: Word Break

Given a string s and a dictionary of words wordDict, return true if s can be segmented into a space-separated sequence of one or more words from the dictionary. The same word in the dictionary can be reused multiple times.

Leetcode 168: Excel Sheet Column Title

Given an integer columnNumber, return its corresponding column title as it appears in an Excel sheet.

Leetcode 205: Isomorphic Strings

Two strings s and t are isomorphic if you can replace the characters in s to get t. The replacement should be such that each character in s maps to exactly one character in t, and the mapping must preserve the order of characters. No two characters in s or t can map to the same character.

Leetcode 208: Implement Trie (Prefix Tree)

Implement a Trie data structure that supports inserting words, searching for exact matches, and checking if any word starts with a given prefix.