Skip to content

Commit 7dc1493

Browse files
committed
Add new lines
1 parent ebfb4dd commit 7dc1493

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

solution/023.Merge k Sorted Lists/Solution.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ def merge_2_lists(list_a, list_b)
3636
list_b.next = merge_2_lists(list_a, list_b.next)
3737
list_b
3838
end
39-
end
39+
end

solution/024.Swap Nodes in Pairs/Solution.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ def swap_pairs(head)
2020
head.next = swap_pairs(tmp)
2121

2222
res
23-
end
23+
end

0 commit comments

Comments
 (0)