-
Notifications
You must be signed in to change notification settings - Fork 34
/
LeetcodeProgram.cs
36 lines (32 loc) · 1.98 KB
/
LeetcodeProgram.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
namespace Algorithm
{
/// <summary>
/// Leetcode算法题目 模块
/// </summary>
class LeetcodeProgram
{
public static void Test()
{
// new TwoSum.Solution().Test(); // 两数之和
// new FindMedianSortedArrays.Solution().Test(); // 寻找两个正序数组的中位数
// new LongestPalindrome.Solution().Test(); // 最长回文子串
// new Atoi.Solution().Test(); // 字符串转换整数 (atoi)
// new LongestCommonPrefix.Solution().Test(); // 最长公共前缀
// new ThreeSum.Solution().Test(); // 三数之和
// new ThreeSumClosest.Solution().Test(); // 最接近的三数之和
// new IsValidParentheses.Solution().Test(); // 有效的括号
// new RemoveDuplicates.Solution().Test(); // 删除排序数组中的重复项
// new MaxArea.Solution().Test(); // 盛最多水的容器
// new StringMultiply.Solution().Test(); // 字符串相乘
// new ReverseString.Solution().Test(); // 反转字符串
// new ReverseWords.Solution().Test(); // 反转字符串中的单词 III
// new ProductExceptSelf.Solution().Test(); // 除自身以外数组的乘积
// new ContainsDuplicate.Solution().Test(); // 存在重复元素
// new SpiralOrder.Solution().Test(); // 螺旋矩阵
// new ConstructQuadTree.Solution().Test(); // 建立四叉树
// new AddStrings.Solution().Test(); // 字符串相加
new RectangleOverlap.Solution().Test(); // 矩形重叠
}
}
}