deno.land / x / masx200_leetcode_test@10.6.5 / brace-expansion / 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 expand from "./index.ts";Deno.test("brace-expansion", () => { const inputs = [ "{a,b}c{d,e}f", "abcd", "abc{x,y,m,n,p,q}", "{x,y,m,n,p,q}", ]; const outputs = [ ["acdf", "acef", "bcdf", "bcef"], ["abcd"], ["abcm", "abcn", "abcp", "abcq", "abcx", "abcy"], ["m", "n", "p", "q", "x", "y"], ]; assertEquals(inputs.map(expand), outputs);});
masx200_leetcode_test

Version Info

Tagged at
a year ago