diff --git a/Java/Dijkastra Shortest Path Algorithm (Graph in form of Adjacency Matrix)/DijkastraShortestPathAlgorithm.java b/Java/Dijkastra Shortest Path Algorithm (Graph in form of Adjacency Matrix)/DijkastraShortestPathAlgorithm.java index a5b7381c..e50e302d 100644 --- a/Java/Dijkastra Shortest Path Algorithm (Graph in form of Adjacency Matrix)/DijkastraShortestPathAlgorithm.java +++ b/Java/Dijkastra Shortest Path Algorithm (Graph in form of Adjacency Matrix)/DijkastraShortestPathAlgorithm.java @@ -1,4 +1,4 @@ -/* Copyright 2018 Aman Mehara +/* Copyright 2020 Sumit Sharma * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,6 +12,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + import java.util.Scanner; /**