最新 最热

LeetCode 0182 - Duplicate Emails

Write a SQL query to find all duplicate emails in a table named Person.

2021-08-11
1

LeetCode 0162 - Find Peak Element

A peak element is an element that is greater than its neighbors.

2021-08-11
1

LeetCode 0165 - Compare Version Numbers

Compare two version numbers version1 and version2.If version1 > version2 return 1; if version1 < version2 return -1;otherwise return 0.

2021-08-11
1

LeetCode 0166 - Fraction to Recurring Decimal

Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.

2021-08-11
1

LeetCode 0168 - Excel Sheet Column Title

Given a positive integer, return its corresponding column title as appear in an Excel sheet.

2021-08-11
1

LeetCode 0171 - Excel Sheet Column Number

Given a column title as appear in an Excel sheet, return its corresponding column number.

2021-08-11
1

LeetCode 0172 - Factorial Trailing Zeroes

Given an integer n, return the number of trailing zeroes in n!.

2021-08-11
1

LeetCode 0142 - Linked List Cycle II

Given a linked list, return the node where the cycle begins. If there is no cycle, return null.

2021-08-11
1

LeetCode 0144 - Binary Tree Preorder Traversal

Given a binary tree, return the preorder traversal of its nodes’ values.

2021-08-11
3

LeetCode 0145 - Binary Tree Postorder Traversal

Given a binary tree, return the postorder traversal of its nodes’ values.

2021-08-11
2