deno.land / x / masx200_leetcode_test@10.6.5 / regular-expression-matching / test.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { assertEquals } from "https://deno.land/std@0.157.0/testing/asserts.ts";
import isMatch from "./index.ts";
Deno.test("regular-expression-matching", () => { const inputs = [ ["aaa", "a.a"], ["ab", ".*c"], ["mississippi", "mis*is*ip*."], ["a", ".*..a*"], ["aa", "a"], ["aa", "a*"], ["ab", ".*"], ]; const outputs = [true, false, true, false, false, true, true]; assertEquals(inputs.map((input) => isMatch(input[0], input[1])), outputs);});
masx200_leetcode_test

Version Info

Tagged at
a year ago