Also known as a developer assessment platform, CodeSignal offers a cloud-based technical skills screening software powered by professionally-designed skills evaluations and a proprietary predictive Coding Score.
In preparation for technical interviews, I discovered this platform that provides a code challenge in the form of an Arcade and a chance to compare myself with other developers.
- Adjacent Elements Product
- Shape Area
- Make Array Consecutive
- Almost Increasing Sequence
- Matrix Elements Sum
- Create new project
npm init -y
- TypeScript install
yarn add -D typescript
- Configure TypeScript compiler
npx tsc --init
- Configure Jest
yarn add -D jest ts-jest @types/jest
- Configure JEST
npx ts-jest config:init
- Add commands
...
"scripts": {
"build": "tsc",
"test": "jest
}