Skip to content

Commit f23f99d

Browse files
author
ggl
committed
调整 LeetCode 题解层级结构
1 parent 41eb3f1 commit f23f99d

12 files changed

+52
-49
lines changed

Algorithm/Algorithm.xcodeproj/project.pbxproj

+40-40
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

LeetCode/169-多数元素/169.swift renamed to LeetCode/169-多数元素.swift

+3
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,6 @@ class Solution169_3 {
126126
return candidate
127127
}
128128
}
129+
130+
// 2 3 4 2 1 2 2
131+
//

LeetCode/LeetCode.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
|题目序号| 问题描述|难易度|解决方案|
55
|----------|-----------|----------|----------|
6-
|001 |[两数之和](https://leetcode-cn.com/problems/two-sum/)|简单|[Swfit](./001-两数之和/001.swift)|
7-
|002 |[两数相加](https://leetcode-cn.com/problems/add-two-numbers/)|中等|[Swift](./002-两数相加/002.swift)
8-
|003 |[无重复字符的最长子串](https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/)|中等|[Swift](./003-无重复字符的最长子串/003.swift)
9-
|015 |[三数之和](https://leetcode-cn.com/problems/3sum)|中等|[Swift](./015-三数之和/015.swift)
10-
|020 |[有效的括号](https://leetcode-cn.com/problems/valid-parentheses/)|简单|[Swift](./020-有效的括号/020.swift)
11-
|023 |[合并K个升序链表](https://leetcode-cn.com/problems/merge-k-sorted-lists/)|困难|[Swift](./023-合并K个升序链表/023.swift)
12-
|041 |[缺失的第一个正数](https://leetcode-cn.com/problems/first-missing-positive/)|困难|[Swift](./041-缺失的第一个正数/041.swift)
13-
|141 |[环形链表](https://leetcode-cn.com/problems/linked-list-cycle/)|简单|[Swift](./141-环形链表/141.swift)
14-
|169 |[多数元素](https://leetcode-cn.com/problems/majority-element)|简单|[Swift](./169-多数元素/169.swift)
6+
|001 |[两数之和](https://leetcode-cn.com/problems/two-sum/)|简单|[Swfit](./001-两数之和.swift)|
7+
|002 |[两数相加](https://leetcode-cn.com/problems/add-two-numbers/)|中等|[Swift](./002-两数相加.swift)
8+
|003 |[无重复字符的最长子串](https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/)|中等|[Swift](./003-无重复字符的最长子串.swift)
9+
|015 |[三数之和](https://leetcode-cn.com/problems/3sum)|中等|[Swift](./015-三数之和.swift)
10+
|020 |[有效的括号](https://leetcode-cn.com/problems/valid-parentheses/)|简单|[Swift](./020-有效的括号.swift)
11+
|023 |[合并K个升序链表](https://leetcode-cn.com/problems/merge-k-sorted-lists/)|困难|[Swift](./023-合并K个升序链表.swift)
12+
|041 |[缺失的第一个正数](https://leetcode-cn.com/problems/first-missing-positive/)|困难|[Swift](./041-缺失的第一个正数.swift)
13+
|141 |[环形链表](https://leetcode-cn.com/problems/linked-list-cycle/)|简单|[Swift](./141-环形链表.swift)
14+
|169 |[多数元素](https://leetcode-cn.com/problems/majority-element)|简单|[Swift](./169-多数元素.swift)

0 commit comments

Comments
 (0)