Skip to content

Commit 4c15d59

Browse files
committed
🐗 Fix some bug and continue CI test
1 parent bbfb5b7 commit 4c15d59

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

src/0024.Swap-Nodes-in-Pairs/Solution.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
package Solution
22

3-
type ListNode struct {
4-
Val int
5-
Next *ListNode
6-
}
7-
83
// 循环
94
func swapPairs(head *ListNode) *ListNode {
105
preHead := &ListNode{Val: 0, Next: nil}
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
package Solution
22

3-
import "container/list"
4-
53
type TreeNode struct {
64
Val int
75
Left *TreeNode
86
Right *TreeNode
97
}
108

119
func levelOrderBottom(root *TreeNode) [][]int {
10+
return [][]int{}
11+
}
1212

13+
func Solution(x bool) bool {
14+
return false
1315
}

0 commit comments

Comments
 (0)