Huachen Wang

LeetCode Study Note | Problem 128: Longest Consecutive Sequence

📌 Problem Summary Given an unsorted array of integers, find the length of the longest consecutive elements sequence. Time complexity must be O(n). Ex

Administrator Administrator Published on 2025-05-12

LeetCode Study Note | Problem 49: Group Anagrams

🧩 Problem Summary Given an array of strings, group the anagrams together. Anagram: A word formed by rearranging the letters of another word (e.g., "e

Administrator Administrator Published on 2025-05-12

LeetCode Study Note | Problem 3: Longest Substring Without Repeating Characters

Problem Overview Given a string s, find the length of the longest substring without repeating characters. Example: Input: "abcabcbb" Output: 3 Explana

Administrator Administrator Published on 2025-05-07