Skip to content

Commit 39db8a2

Browse files
author
AmiyahJo
committed
chore: adjust listnode comment
1 parent 2be3bd2 commit 39db8a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lesson_12/structs_ts/src/lesson12.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ export class Lesson12 {
99
const oddPoints = 0;
1010
const evenPoints = 0;
1111

12+
// ListNode current = head;
1213
class ListNode {
1314
current: null | undefined;
1415
costructor(head = null) {
1516
this.current = head;
1617
}
1718
}
18-
// ListNode current = head;
1919

2020
// while(current != null && current.next != null) {
2121
// if (current.val > current.next.val) {

0 commit comments

Comments
 (0)