Skip to content

Commit 60d8604

Browse files
committed
tags
1 parent dee6af7 commit 60d8604

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Leetcode/0019.Remove-Nth-Node-From-End-of-List/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [19. Remove Nth Node From End of List](https://leetcode.com/problems/middle-of-the-linked-list/)
2-
tags: Medium, Leetcode, Two Pointers
2+
tags: Medium, Two Pointers
33
## 題目
44
Given the head of a linked list, remove the nth node from the end of the list and return its head.
55

Leetcode/0567.Permutation-in-String/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [567. Permutation in String](https://leetcode.com/problems/permutation-in-string/)
2-
tags: Medium, Leetcode, Sliding Window
2+
tags: Medium, Sliding Window
33

44
## 題目
55
Given two strings s1 and s2, return true if s2 contains a permutation of s1, or false otherwise.

Leetcode/0704.Binary-Search/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [704. Binary Search](https://leetcode.com/problems/binary-search/)
2-
tags: Easy, Leetcode, Binary Search
2+
tags: Easy, Binary Search
33

44
## 題目
55

Leetcode/0752.Open-the-Lock/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [752. Open the Lock](https://leetcode.com/problems/open-the-lock/)
2-
tags: Medium, Leetcode, BFS
2+
tags: Medium, BFS
33

44
You have a lock in front of you with 4 circular wheels. Each wheel has 10 slots: '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'. The wheels can rotate freely and wrap around: for example we can turn '9' to be '0', or '0' to be '9'. Each move consists of turning one wheel one slot.
55

Leetcode/0876.Middle-of-the-Linked-List/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [876. Middle of the Linked List](https://leetcode.com/problems/middle-of-the-linked-list/)
2-
tags: Medium, Leetcode, Two Pointers
2+
tags: Medium, Two Pointers
33

44
## 題目
55
Given the head of a singly linked list, return the middle node of the linked list.

0 commit comments

Comments
 (0)