mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-12-19 06:58:15 +08:00
chore: update spelling mistakes (#1790)
* chore: update spelling mistakes * chore: add spellignore * chore: update sp mistakes
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
|
||||
function createGraph(V, E) {
|
||||
// V - Number of vertices in graph
|
||||
// E - Number of edges in graph (u,v,w)
|
||||
// E - Number of edges in graph (u, v, w)
|
||||
const adjList = [] // Adjacency list
|
||||
for (let i = 0; i < V; i++) {
|
||||
adjList.push([])
|
||||
|
||||
Reference in New Issue
Block a user