https://github.com/dguyen/angular-ooo-solver
An angular website that solves odd one out questions.
https://github.com/dguyen/angular-ooo-solver
Last synced: about 1 year ago
JSON representation
An angular website that solves odd one out questions.
- Host: GitHub
- URL: https://github.com/dguyen/angular-ooo-solver
- Owner: dguyen
- License: mit
- Created: 2018-07-06T08:39:16.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-04T15:26:18.000Z (almost 8 years ago)
- Last Synced: 2025-02-09T04:26:08.238Z (over 1 year ago)
- Language: TypeScript
- Size: 249 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Odd One Out Solver
An Angular5 website that solves odd one out questions.
Here is an example of an odd one out question:
1. Apple
2. Pie
3. Peach
4. Banana
The odd one out is __'Pie'__, because it is not a fruit.
The website determines the odd one out by checking which items fall into the same categories. If n - 1 items fall into similar categories, then the item left out will be assumed to be the odd one out. The data used to determine the categories is retrieved from Wikipedia's API.
Please note the results are not always correct.
## Live Demo
https://www.oddoneoutsolver.com
## Getting Started
### Prerequisites
- NodeJS (https://nodejs.org/en/)
- AngularCLI (https://cli.angular.io/)
### Installing Dependencies
Inside the cloned repository, install dependencies using the npm command below
```
npm install
```
## Local Deployment
```
ng serve
```
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.