initial implementation of sorting algorithms

This commit is contained in:
2026-02-04 09:22:05 +01:00
parent 2aca34fb9c
commit cbc46cf858
11 changed files with 410 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ export const routes: Routes = [
{ path: RouterConstants.PROJECTS.PATH, component: RouterConstants.PROJECTS.COMPONENT},
{ path: RouterConstants.ALGORITHMS.PATH, component: RouterConstants.ALGORITHMS.COMPONENT},
{ path: RouterConstants.PATHFINDING.PATH, component: RouterConstants.PATHFINDING.COMPONENT},
{ path: RouterConstants.SORTING.PATH, component: RouterConstants.SORTING.COMPONENT},
{ path: RouterConstants.IMPRINT.PATH, component: RouterConstants.IMPRINT.COMPONENT},
];