Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mdshimulmahmud/wpxpo-task


https://github.com/mdshimulmahmud/wpxpo-task

Last synced: 5 days ago
JSON representation

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

```