deno.land / x / masx200_leetcode_test@10.6.5 / super-pow / test.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { assertEquals } from "https://deno.land/std@0.157.0/testing/asserts.ts";
import superPow from "./index.ts";
Deno.test("super-pow", () => { const inputs = [ [2, [3]], [2, [1, 0]], [1, [4, 3, 3, 8, 5, 2]], ] as Array<Parameters<typeof superPow>>; const outputs = [8, 1024, 1]; assertEquals( inputs.map(([x, y]) => superPow(x, y)), outputs, );});
masx200_leetcode_test

Version Info

Tagged at
a year ago