Skip to content

Commit 06b320e

Browse files
committed
"npm:@datastructures-js/[email protected]"
1 parent 4b14e8d commit 06b320e

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

deno.lock

Lines changed: 6 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export { walk } from "https://deno.land/[email protected]/fs/mod.ts";
1818
export { parse } from "https://deno.land/[email protected]/flags/mod.ts";
1919
export { combinations } from "https://deno.land/x/[email protected]/mod.ts";
2020
export { isIP } from "https://deno.land/[email protected]/node/internal/net.ts";
21-
export { Heap } from "https://esm.sh/@datastructures-js/[email protected]/?dts";
21+
export { Heap } from "npm:@datastructures-js/[email protected]";
2222
export {
2323
AvlTree,
2424
BinarySearchTree,

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ function kSmallestPairs(
2424
return res;
2525
}
2626
export default kSmallestPairs;
27-
import { Heap } from "https://esm.sh/@datastructures-js/[email protected]/src/heap.js";
27+
28+
import { Heap } from "npm:@datastructures-js/[email protected]";

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { Heap } from "https://esm.sh/@datastructures-js/[email protected]/src/heap.js";
2-
1+
import { Heap } from "npm:@datastructures-js/[email protected]";
32
import { GridMaster } from "./GridMaster.ts";
43

54
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 "https://esm.sh/@datastructures-js/[email protected]/src/heap.js";
1+
import { Heap } from "npm:@datastructures-js/[email protected]";
22

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

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 "https://esm.sh/@datastructures-js/[email protected]/src/heap.js";
1+
import { Heap } from "npm:@datastructures-js/[email protected]";
22

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

0 commit comments

Comments
 (0)