deno.land / x / masx200_leetcode_test@10.6.5 / maximum-width-of-binary-tree / bigint_max.ts

نووسراو ببینە
1
2
3
4
5
6
7
export function bigintMax(...bigs: bigint[]): bigint { if (bigs.length === 0) { throw new Error("empty argument"); } return bigs.reduce((p, v) => (p < v ? v : p), bigs[0]);}
masx200_leetcode_test

Version Info

Tagged at
a year ago