Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"source.organizeImports.biome": "explicit"
},
"cSpell.language": "en,de-DE",
"cSpell.words": ["amira", "bella", "fibonacci"]
"cSpell.words": ["amira", "bella", "distanz", "fibonacci"]
}
2 changes: 0 additions & 2 deletions Problems/Dependable-Jobs-Schedule/solver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ export default function finishAll(taskAmount: number, dependencies: number[][]):
}
}

console.log(dep);

for (let i = 0; i < dependencies.length; i++) {
for (const d of Array.from(dep.entries())) {
if (!canBeFinished.get(d[0])) {
Expand Down
16 changes: 16 additions & 0 deletions Problems/Shortes-Path-Dijkstra/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Shortes Path Dijkstra-Algorithmus

This problem is about finding the shortest path between given destinations and the connections between them, where each connection has a specific length.

## Documentation

### Solution Idea

I implemented the Dijkstra-Algorithmus.
You can see [here](https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm) how this algorithm works.

---

### [Implementation](./solver.ts)

---
Loading