Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mdshimulmahmud/wpxpo-task
https://github.com/mdshimulmahmud/wpxpo-task
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mdshimulmahmud/wpxpo-task
- Owner: MdShimulMahmud
- Created: 2024-06-28T13:19:31.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-09-14T17:45:58.000Z (2 months ago)
- Last Synced: 2024-09-15T03:05:26.427Z (2 months ago)
- Language: JavaScript
- Size: 272 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Task1 - Spinner Wheel
### 1. How to run this code? Follow the instructions step-by-step:
- Clone this repository:
```sh
git clone https://github.com/MdShimulMahmud/wpxpo-task.git spinner-wheel
```
- Go to your project directory
```sh
cd spinner-wheel
```
- Run the command into your CLI```sh
npm install
npm start
```- Your application running at [http://localhost:3000](http://localhost:3000/)
### 2. The code's output will be like this
![](https://github.com/MdShimulMahmud/wpxpo-task/blob/master/images/spinner_wheel.png)## Task2 - Problem Solution
- Go to the folder named [Task2_problem_solution](https://github.com/MdShimulMahmud/wpxpo-task/blob/master/Task2_problem_solution)
- See the [pattern.cpp](https://github.com/MdShimulMahmud/wpxpo-task/blob/master/Task2_problem_solution/pattern.cpp) file
- Run the code to your local C/C++ IDE
### The output of the pattern- Input 7 and 1
```sh
7 1
1234567
2 2
3 3
4 4
5 5
6 6
7654321
```
- Input 5 and a
```sh
5 a
abcde
b d
c c
d b
edcba```