摘要:
101. Symmetric Tree (easy) 判断树是否为左右对称 Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this 阅读全文
摘要:
1. Two Sum (easy) 找到数组中和为target的两个数,返回索引 2. Add Two Numbers (medium) You are given two non-empty linked lists representing two non-negative integers. 阅读全文
摘要:
3. Longest Substring Without Repeating Characters (medium) 最长的无重复的子字符串 Given a string, find the length of the longest substring without repeating char 阅读全文
摘要:
10. Regular Expression Matching (hard) # 正则表达式匹配:.和* Implement regular expression matching with support for '.' and '*'. '.' Matches any single charac 阅读全文
摘要:
1. Two Sum (easy) 找到数组中和为target的两个数,返回索引 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You 阅读全文
摘要:
leetcode 笔记 Linked List 2. Add Two Numbers (medium) You are given two non-empty linked lists representing two non-negative integers. The digits are st 阅读全文