Skip to content

Commit 601dd43

Browse files
🐛 FIX: Project Euler - 15 | fixed spelling error
1 parent 737fc6c commit 601dd43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Project-Euler/test/Problem015.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import { expect } from 'vitest'
22
import { latticePath } from '../Problem015'
33

4-
describe('Finding total numbers of Latice Paths', () => {
4+
describe('Finding total numbers of Lattice Paths', () => {
55
test.each([
66
[2, 6],
77
[4, 70],
88
[5, 252],
99
[10, 184756],
1010
[20, 137846528820]
11-
])('If Grid Size: %i, then Latice Paths count: %i', (a, expected) => {
11+
])('If Grid Size: %i, then Lattice Paths count: %i', (a, expected) => {
1212
expect(latticePath(a)).toBe(expected)
1313
})
1414
})

0 commit comments

Comments
 (0)