Skip to content

Commit f7bb869

Browse files
authored
Improved tasks 21, 51, 55, 76
1 parent 8370d82 commit f7bb869

File tree

5 files changed

+69
-3
lines changed

5 files changed

+69
-3
lines changed

src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// #Level_1_Day_3_Linked_List #Udemy_Linked_List #Big_O_Time_O(m+n)_Space_O(m+n)
44
// #2024_12_04_Time_0_ms_(100.00%)_Space_52.3_MB_(20.64%)
55

6-
import { ListNode } from "../../com_github_leetcode/listnode";
6+
import { ListNode } from '../../com_github_leetcode/listnode';
77

88
/**
99
* Definition for singly-linked list.

src/main/js/g0001_0100/s0076_minimum_window_substring/solution.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var minWindow = function(s, t) {
4040
}
4141
}
4242

43-
return d === Number.MAX_VALUE ? "" : s.substring(head, head + d)
43+
return d === Number.MAX_VALUE ? '' : s.substring(head, head + d)
4444
};
4545

4646
export { minWindow }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
// tslint:disable:no-magic-numbers
2+
import { describe, it, expect } from 'vitest'
3+
import { ListNode } from 'src/main/js/com_github_leetcode/listnode'
4+
import { constructLinkedList, createSinglyLinkedList } from 'src/test/js/com_github_leetcode/linkedlistutils'
5+
6+
describe('ListNode', () => {
7+
it('should initialize with default values', () => {
8+
const node = new ListNode()
9+
expect(node.val).toBe(0)
10+
expect(node.next).toBeNull()
11+
})
12+
13+
it('should initialize with given values', () => {
14+
const nextNode = new ListNode(2)
15+
const node = new ListNode(1, nextNode)
16+
expect(node.val).toBe(1)
17+
expect(node.next).toBe(nextNode)
18+
})
19+
20+
it('toString should return a comma-separated list of values', () => {
21+
const node3 = new ListNode(3)
22+
const node2 = new ListNode(2, node3)
23+
const node1 = new ListNode(1, node2)
24+
expect(node1.toString()).toBe('1, 2, 3')
25+
})
26+
})
27+
28+
describe('constructLinkedList', () => {
29+
it('should return null for an empty array', () => {
30+
expect(constructLinkedList([])).toBeNull()
31+
})
32+
33+
it('should create a linked list from an array', () => {
34+
const nums = [1, 2, 3]
35+
const list = constructLinkedList(nums)
36+
expect(list.val).toBe(1)
37+
expect(list.next.val).toBe(2)
38+
expect(list.next.next.val).toBe(3)
39+
expect(list.next.next.next).toBeNull()
40+
})
41+
})
42+
43+
describe('createSinglyLinkedList', () => {
44+
it('should throw an error for an empty array', () => {
45+
expect(() => createSinglyLinkedList([])).toThrow(
46+
'Please pass in a valid listValues to create a singly linked list.',
47+
)
48+
})
49+
50+
it('should create a singly linked list from an array', () => {
51+
const listValues = [1, 2, 3]
52+
const list = createSinglyLinkedList(listValues)
53+
expect(list.val).toBe(1)
54+
expect(list.next.val).toBe(2)
55+
expect(list.next.next.val).toBe(3)
56+
expect(list.next.next.next).toBeNull()
57+
})
58+
})

src/test/js/g0001_0100/s0051_n_queens/solution.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { expect, test } from 'vitest'
55
test('solveNQueens', () => {
66
expect(solveNQueens(4)).toEqual([
77
['..Q.', 'Q...', '...Q', '.Q..'],
8-
['.Q..', '...Q', 'Q...', '..Q.']
8+
['.Q..', '...Q', 'Q...', '..Q.'],
99
])
1010
})
1111

src/test/js/g0001_0100/s0055_jump_game/solution.test.js

+8
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,11 @@ test('canJump', () => {
99
test('canJump2', () => {
1010
expect(canJump([3, 2, 1, 0, 4])).toEqual(false)
1111
})
12+
13+
test('canJump3', () => {
14+
expect(canJump([3])).toEqual(true)
15+
})
16+
17+
test('canJump4', () => {
18+
expect(canJump([0, 3, 1, 1, 4])).toEqual(false)
19+
})

0 commit comments

Comments
 (0)