We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc5f2d commit f38ba0fCopy full SHA for f38ba0f
README.md
@@ -1,6 +1,7 @@
1
# Dijkstra's Shortest Path Algorithm
2
3
-A pretty good implementation of Dijkstra's shortest-path algorithm for Deno.
+A fast and memory-efficient implementation of Dijkstra's shortest-path algorithm
4
+for Deno.
5
6
If you ever run into a problem that can be represented as a graph where the
7
solution has something to do with finding the shortest path between nodes, this
build
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+set -e
+deno fmt
+deno lint
+deno test
deps.ts
@@ -1 +1 @@
-export * from "https://deno.land/std@0.115.0/testing/asserts.ts";
+export * from "https://deno.land/std@0.122.0/testing/asserts.ts";
0 commit comments