Skip to content

Commit 287d77b

Browse files
authored
Merge pull request #39 from masx200/deno-dependency-updates
Update dependencies
2 parents ccb459a + 018ad5a commit 287d77b

File tree

20 files changed

+26
-26
lines changed

20 files changed

+26
-26
lines changed

add-two-polynomials-represented-as-linked-lists/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.170.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";
22

33
import { ArrayToPolyNode } from "./ArrayToPolyNode.ts";
44
import addPoly from "./index.ts";

basic-calculator-iv/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.170.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";
22

33
import basicCalculatorIV from "./index.ts";
44
import { Poly } from "./Poly.ts";

booking-concert-tickets-in-groups/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.170.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";
22
import { runScript } from "leetcode-class";
33

44
import BookMyShow from "./index.ts";

brace-expansion-ii/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.170.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";
22

33
import braceExpansionII from "./index.ts";
44

brace-expansion/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.170.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";
22

33
import expand from "./index.ts";
44

construct-binary-search-tree-from-preorder-traversal/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.170.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";
22

33
import { TreeNodeLeetCodeFromJSON } from "../utils/TreeNodeLeetCodeParse.ts";
44
import { TreeNodeLeetCodeToJSON } from "../utils/TreeNodeLeetCodeStringify.ts";

construct-binary-tree-from-string/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.170.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";
22

33
import str2tree from "./index.ts";
44

count-of-smaller-numbers-after-self/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.170.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";
22

33
import countSmaller from "./index.ts";
44

delete-tree-nodes/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.170.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";
22

33
import deleteTreeNodes from "./index.ts";
44

deps.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ export {
55
assertFalse,
66
assertStrictEquals,
77
equal,
8-
} from "https://deno.land/std@0.170.0/testing/asserts.ts";
8+
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
99
export { default as random } from "https://cdn.skypack.dev/lodash@4.17.21/random?dts";
1010
export { default as countBy } from "https://cdn.skypack.dev/lodash@4.17.21/countBy?dts";
1111
export { default as zip } from "https://cdn.skypack.dev/lodash@4.17.21/zip?dts";
1212
export { default as isEqual } from "https://cdn.skypack.dev/lodash@4.17.21/isEqual?dts";
1313
export { default as uniqBy } from "https://cdn.skypack.dev/lodash@4.17.21/uniqBy?dts";
1414

1515
export { default as intersection } from "https://cdn.skypack.dev/lodash@4.17.21/intersection?dts";
16-
import { BinaryHeap } from "https://deno.land/std@0.170.0/collections/binary_heap.ts";
16+
import { BinaryHeap } from "https://deno.land/std@0.171.0/collections/binary_heap.ts";
1717
export { BinaryHeap };
18-
export { walk } from "https://deno.land/std@0.170.0/fs/mod.ts";
19-
export { parse } from "https://deno.land/std@0.170.0/flags/mod.ts";
18+
export { walk } from "https://deno.land/std@0.171.0/fs/mod.ts";
19+
export { parse } from "https://deno.land/std@0.171.0/flags/mod.ts";
2020
export { combinations } from "https://deno.land/x/combinatorics@1.1.2/mod.ts";
21-
export { isIP } from "https://deno.land/std@0.170.0/node/internal/net.ts";
21+
export { isIP } from "https://deno.land/std@0.171.0/node/internal/net.ts";
2222
export { Heap } from "npm:@datastructures-js/heap@4.2.2";
2323
export {
2424
AvlTree,
@@ -32,7 +32,7 @@ export {
3232
TreeNode,
3333
} from "https://esm.sh/@masx200/leetcode-class@1.2.7/";
3434

35-
export type { WalkEntry } from "https://deno.land/std@0.170.0/fs/_util.ts";
35+
export type { WalkEntry } from "https://deno.land/std@0.171.0/fs/_util.ts";
3636

3737
import memoize from "https://cdn.skypack.dev/lodash@4.17.21/memoize?dts";
3838
import AsyncLimiterClass, {

design-a-file-sharing-system/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ export default class FileSharing {
6565
return usersList;
6666
}
6767
}
68-
import { BinaryHeap } from "https://deno.land/std@0.170.0/collections/binary_heap.ts";
68+
import { BinaryHeap } from "https://deno.land/std@0.171.0/collections/binary_heap.ts";

dinner-plate-stacks/RedBlackTree.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { RedBlackNode } from "https://deno.land/std@0.170.0/collections/red_black_node.ts";
2-
import { RedBlackTree } from "https://deno.land/std@0.170.0/collections/red_black_tree.ts";
1+
import { RedBlackNode } from "https://deno.land/std@0.171.0/collections/red_black_node.ts";
2+
import { RedBlackTree } from "https://deno.land/std@0.171.0/collections/red_black_tree.ts";
33

44
export default class<T> extends RedBlackTree<T> {
55
getRoot() {

dinner-plate-stacks/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ascend } from "https://deno.land/std@0.170.0/collections/binary_search_tree.ts";
1+
import { ascend } from "https://deno.land/std@0.171.0/collections/binary_search_tree.ts";
22

33
import RedBlackTree from "./RedBlackTree.ts";
44
import { reverseInOrderIterator } from "./RedBlackTree.ts";

find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance/findTheCity.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BinaryHeap } from "https://deno.land/std@0.170.0/collections/binary_heap.ts";
1+
import { BinaryHeap } from "https://deno.land/std@0.171.0/collections/binary_heap.ts";
22

33
export default function findTheCity(
44
n: number,

import_map.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"imports": {
3-
"asserts": "https://deno.land/std@0.170.0/testing/asserts.ts",
3+
"asserts": "https://deno.land/std@0.171.0/testing/asserts.ts",
44
"leetcode-class": "https://esm.sh/@masx200/leetcode-class@1.2.7/",
55
"assert": "https://esm.sh/assert@2.0.0"
66
},

minimum-path-sum/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertStrictEquals } from "https://deno.land/std@0.170.0/testing/asserts.ts";
1+
import { assertStrictEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";
22
import minPathSum from "./index.ts";
33

44
Deno.test("minimum-path-sum", () => {

path-with-minimum-effort/minimumEffortPath.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BinaryHeap } from "https://deno.land/std@0.170.0/collections/binary_heap.ts";
1+
import { BinaryHeap } from "https://deno.land/std@0.171.0/collections/binary_heap.ts";
22

33
function minimumEffortPath(heights: number[][]): number {
44
const dirs = [

reachable-nodes-in-subdivided-graph/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ export default function reachableNodes(
4444
}
4545
return reachableNodes;
4646
}
47-
import { BinaryHeap } from "https://deno.land/std@0.170.0/collections/binary_heap.ts";
47+
import { BinaryHeap } from "https://deno.land/std@0.171.0/collections/binary_heap.ts";

total-cost-to-hire-k-workers/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ export default function totalCost(
3030
costs.sort(compare);
3131
return ans + costs.slice(0, k).reduce((p, c) => p + c, 0);
3232
}
33-
import { BinaryHeap } from "https://deno.land/std@0.170.0/collections/binary_heap.ts";
33+
import { BinaryHeap } from "https://deno.land/std@0.171.0/collections/binary_heap.ts";

utils/split_by_count.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { chunk } from "https://deno.land/std@0.170.0/collections/chunk.ts";
1+
import { chunk } from "https://deno.land/std@0.171.0/collections/chunk.ts";
22

33
export function split_by_count<T>(files: T[], limit: number): T[][] {
44
return chunk(files, limit) as T[][];

0 commit comments

Comments
 (0)