Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/max-im/js-lab
JS-Lab - Interview Code Check Platform! This platform is designed to help interviewers and candidates conduct coding interviews efficiently and effectively.
https://github.com/max-im/js-lab
nextjs tailwind typescript
Last synced: 4 days ago
JSON representation
JS-Lab - Interview Code Check Platform! This platform is designed to help interviewers and candidates conduct coding interviews efficiently and effectively.
- Host: GitHub
- URL: https://github.com/max-im/js-lab
- Owner: Max-im
- Created: 2024-11-14T12:53:25.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2024-12-13T11:57:32.000Z (14 days ago)
- Last Synced: 2024-12-13T12:38:36.885Z (14 days ago)
- Topics: nextjs, tailwind, typescript
- Language: TypeScript
- Homepage: https://js-laboratory.vercel.app/
- Size: 15.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JS-Lab - Code Check Platform
## Introduction
Welcome to the JS-Lab! This platform is designed to help interviewers and candidates conduct coding interviews efficiently and effectively.
## Available Tasks List
Number | Name | Short Description | Level | Tags
------ | ------------------------------------------------------------------------ | -------------------------------------------- | ------ | -------------
1 | [Reverse String](https://js-laboratory.vercel.app/task/reverse-string) | Reverse a given string | Easy | String
2 | [Palindrome](https://js-laboratory.vercel.app/task/palindrome) | Check if a string is a palindrome | Easy | String, Array
3 | [Reverse Integer](https://js-laboratory.vercel.app/task/reverse-integer) | Reverse the digits of an integer | Easy | Number
4 | [Fizz Buzz](https://js-laboratory.vercel.app/task/fizz-buzz) | Print numbers with Fizz/Buzz for multiples | Easy | Loop, Array
5 | [Anagram](https://js-laboratory.vercel.app/task/anagram) | Check if two strings are anagrams | Easy | String
6 | [Capitalize](https://js-laboratory.vercel.app/task/capitalize) | Capitalize the first letter of each word | Easy | String
7 | [Mario](https://js-laboratory.vercel.app/task/mario) | Print a Mario-style pyramid | Easy | Loop, Array
8 | [Array Chunking](https://js-laboratory.vercel.app/task/chank) | Split an array into chunks of a given size | Medium | Array
9 | [Max Char](https://js-laboratory.vercel.app/task/maxchar) | Find the most frequent character in a string | Medium | String
10 | [Binary Sum](https://js-laboratory.vercel.app/task/binary-sum) | Calculate the sum of two binary numbers | Hard | String, Number## Development
Please make sure you use 20 version of Node.js
NVM sample:
```
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
nvm use 20
```