Skip to content

Commit

Permalink
Readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
sadanandpai committed Mar 30, 2024
1 parent 911ad0d commit d4e4d4f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ algorithms</a>

### Algorithms Visualizers

This repo is an attempt to help in learning popular algorithms by visualization
This repo helps in learning popular algorithms by visualization

#### Sorting Visualizer

Expand All @@ -44,7 +44,18 @@ Features

#### Path finder

> Still in progress
Helps to

- understand working of different maze generation algorithms
- understand working of different path finding algorithms
- check the visits, path length and time taken

Features

- Build any kind of custom 2D maze
- Alter the speed of execution
- Generate infinite mazes
- Move the targets in live to see the changes

<br>

Expand All @@ -55,9 +66,10 @@ Production libraries
- [React](https://react.dev/) (Frontend Library)
- [Redux Toolkit](https://redux-toolkit.js.org/) (State management)
- [React Router](https://reactrouter.com/en/main/) (Router)
- [React Switch](https://react-switch.netlify.app/) (Switch)
- [Lucide](https://lucide.dev/) (Icons pack)
- [Sonner](https://sonner.emilkowal.ski/) (Toast)
- [React Joyrid](https://react-joyride.com/)
- [React Switch](https://react-switch.netlify.app/) (Switch)

Build libraries

Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/path-finder/maze.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('path finder', () => {
cy.get('[data-cell-type="2"]').should('have.length', 1);
});

it('should verify the prims maze generation', () => {
it('should verify the mazes generation', () => {
for (const maze of mazes) {
cy.get('#maze').select(maze);
verifyMaze();
Expand Down

0 comments on commit d4e4d4f

Please sign in to comment.