Skip to content

Commit 756ffaf

Browse files
authored
Update test.ts
1 parent 4d4d279 commit 756ffaf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

climbing-stairs/test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Deno.test("climbing-stairs", () => {
77
{ input: 1, output: 1 },
88
{ input: 2, output: 2 },
99
{ input: 3, output: 3 },
10+
{ input: 99, output: 354224848179261915075n },
1011
];
1112
examples.forEach(({ input, output }) => {
1213
assertStrictEquals(climbStairs(input), output);

0 commit comments

Comments
 (0)