https://github.com/kunalpanchal/algos-frontend
https://github.com/kunalpanchal/algos-frontend
angular angular4 material-design
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kunalpanchal/algos-frontend
- Owner: kunalpanchal
- Created: 2017-10-22T23:11:27.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T11:45:19.000Z (over 2 years ago)
- Last Synced: 2025-02-03T11:23:48.281Z (over 1 year ago)
- Topics: angular, angular4, material-design
- Language: TypeScript
- Size: 1020 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algos-Frontend
The frontend app is made with Angular 4.2 using @angular/cli 1.4.9. The only dependency used in the product is "@angular/material": "^2.0.0-beta.12" for the material design components in the app.
### To run the project locally
`cd algos-frontend && npm install && ng serve`
Now this runs on the default angular-cli port 4200. http://localhost:4200
## Algo1 - Frequently occuring words in a file
The SPA has a single input field to enter the "number of entries that are to be retrieved" along with 2 options either to
* Retrieve the data realtime from the file and provide the result. [Get the output]
* Retrieve the data from cached data using Redis. [Get the output faster with Redis]
Note : "Where" and "where" are treated as different. ie. The program is case-sensitive.
