This repository contains my solutions to various LeetCode coding challenges. Each solution is implemented in a clean and efficient manner, following best practices in software development. The problems range from easy to hard and cover various topics such as algorithms, data structures, dynamic programming, and more.
Feel free to explore the solutions, suggest improvements, or contribute by providing alternative approaches.
To install the dependencies, run:
npm install
The project can load environment variables from .env
files based on the NODE_ENV
parameter. The following files are used:
.env.development
for development.env.production
for production
These files are automatically loaded by the dotenv-webpack
plugin configured in the webpack.config.js file.
Here are the available scripts you can run:
To run the tests using Jest:
npm run test
To start the development server with the entry setting in the webpack.config.js file:
npm run start:dev
To start the production server with the entry setting in the webpack.config.js file:
npm run start:prod
To build the project for development:
npm run build:dev
To build the project for production:
npm run build:prod
To build the project for testing:
npm run build:test
Evren Yeniev
This project is licensed under the ISC License.