Skip to content

Commit 47f79a3

Browse files
author
AmiyahJo
committed
chore: remove lesson12.ts comments
1 parent 394abcf commit 47f79a3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lesson_12/structs_ts/src/lesson12.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
import { ListNode } from './list_node.js';
22

33
export class Lesson12 {
4-
/**
5-
* Provide the solution to LeetCode 3062 here:
6-
* https://github.com/yang-su2000/Leetcode-algorithm-practice/tree/master/3062-winner-of-the-linked-list-game
7-
*/
4+
85
public gameResult(head: ListNode | null): string {
96
let [oddPoints, evenPoints] = [0,0];
107
let current = head;

0 commit comments

Comments
 (0)