We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 394abcf commit 47f79a3Copy full SHA for 47f79a3
lesson_12/structs_ts/src/lesson12.ts
@@ -1,10 +1,7 @@
1
import { ListNode } from './list_node.js';
2
3
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
- */
+
8
public gameResult(head: ListNode | null): string {
9
let [oddPoints, evenPoints] = [0,0];
10
let current = head;
0 commit comments