Skip to content

Commit 5024b49

Browse files
authored
Merge pull request #109 from masx200/deno-dependency-updates
Update dependencies
2 parents f14990b + 7d05bb9 commit 5024b49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

split-a-circular-linked-list/CircularLinkedListToArray.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ListNode } from "../reverse-linked-list/ListNode.ts";
22

33
export function CircularLinkedListToArray(
4-
list: ListNode | null | undefined
4+
list: ListNode | null | undefined,
55
): number[] {
66
if (!list) return [];
77
const array = [];

0 commit comments

Comments
 (0)