Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 1.14 KB

README.md

File metadata and controls

39 lines (23 loc) · 1.14 KB

Some test tasks

testTasks

Task 1

Check if a string is a palindrome.
The user should have an opportunity to enter the data in the input and see behind a message "String is a palindrome/String isn`t a palindrome".

Task 2

Rotate a matrix NxN by 90 degrees in a clockwise direction. The user should see the interface.
The data for checking
[ [1,2,3],[1,2,3],[1,2,3] ] => [ [1,1,1], [2,2,2], [3,3,3] ]

Task 3

Check if all the brackets are closed/ The user should have an opportunity to enter the N number of different brackets in the input and see behind a message "All brackets are closed/Not all brackets are closed".

Task 4

Create a calculator. Operations: + - * / DEL CLEAR

View Demo

link to Some test tasks

About project

This project was built with React and React custom hooks.

Available Scripts

In the project directory, you can run:

npm start

Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.