Skip to content

Commit b64a513

Browse files
authored
Merge pull request #40 from masx200/deno-dependency-updates
Update dependencies
2 parents de6ca7d + 87a411c commit b64a513

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export { walk } from "https://deno.land/[email protected]/fs/mod.ts";
1919
export { parse } from "https://deno.land/[email protected]/flags/mod.ts";
2020
export { combinations } from "https://deno.land/x/[email protected]/mod.ts";
2121
export { isIP } from "https://deno.land/[email protected]/node/internal/net.ts";
22-
export { Heap } from "npm:@datastructures-js/heap@4.2.2";
22+
export { Heap } from "npm:@datastructures-js/heap@4.3.1";
2323
export {
2424
AvlTree,
2525
BinarySearchTree,

exam-room/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ class ExamRoom {
7272
}
7373
export default ExamRoom;
7474
import { AvlTree } from "npm:@datastructures-js/[email protected]";
75-
import { Heap } from "npm:@datastructures-js/heap@4.2.2";
75+
import { Heap } from "npm:@datastructures-js/heap@4.3.1";

find-k-pairs-with-smallest-sums/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ function kSmallestPairs(
2525
}
2626
export default kSmallestPairs;
2727

28-
import { Heap } from "npm:@datastructures-js/heap@4.2.2";
28+
import { Heap } from "npm:@datastructures-js/heap@4.3.1";

minimum-path-cost-in-a-hidden-grid/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Heap } from "npm:@datastructures-js/heap@4.2.2";
1+
import { Heap } from "npm:@datastructures-js/heap@4.3.1";
22
import { GridMaster } from "./GridMaster.ts";
33

44
export default function findShortestPath(master: GridMaster): number {

network-delay-time/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Heap } from "npm:@datastructures-js/heap@4.2.2";
1+
import { Heap } from "npm:@datastructures-js/heap@4.3.1";
22

33
export default function networkDelayTime(
44
times: number[][],

number-of-orders-in-the-backlog/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ function getNumberOfBacklogOrders(orders: number[][]): number {
5656
}
5757

5858
export default getNumberOfBacklogOrders;
59-
import { Heap } from "https://cdn.skypack.dev/@datastructures-js/heap@4.2.2/src/heap.js?dts";
59+
import { Heap } from "https://cdn.skypack.dev/@datastructures-js/heap@4.3.1/src/heap.js?dts";

number-of-ways-to-arrive-at-destination/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Heap } from "npm:@datastructures-js/heap@4.2.2";
1+
import { Heap } from "npm:@datastructures-js/heap@4.3.1";
22

33
export default function countPaths(n: number, roads: number[][]): number {
44
const mod = 10 ** 9 + 7;

0 commit comments

Comments
 (0)