Skip to content

Commit

Permalink
#2
Browse files Browse the repository at this point in the history
  • Loading branch information
ctkqiang committed Sep 16, 2020
1 parent ba2305c commit b60d9a4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Java CI with Gradle
name: Java CI

on:
push:
Expand Down
7 changes: 7 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "CodeLens (Launch) - ShortestPathAlgorithm",
"request": "launch",
"mainClass": "code.ShortestPathAlgorithm",
"projectName": "ShortestPathAlgorithm_c3d92a48"
},
{
"type": "java",
"name": "CodeLens (Launch) - ShortestPathAlgorithm",
Expand Down
1 change: 1 addition & 0 deletions code/algorithm.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public static void dijkstra(int graph[][], int src) {
dist[v] = dist[u] + graph[u][v];
}
}

output.solution(dist, V);
}
}
Expand Down

0 comments on commit b60d9a4

Please sign in to comment.