Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bukharney/typescript-mergefunction
https://github.com/bukharney/typescript-mergefunction
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bukharney/typescript-mergefunction
- Owner: Bukharney
- Created: 2024-02-09T07:00:05.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-09T12:45:00.000Z (9 months ago)
- Last Synced: 2024-02-09T13:55:30.000Z (9 months ago)
- Language: TypeScript
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Typescript project with unit test
For implementing function with this interface
```
merge (int[] collection_1, int[] collection_2, int[] collection_3) : int []
```
given
```
collection_1, collection_2 already sorted from min(0) to max
collection_3 already sorted from max to min(0)
```## Getting Started
To run locally on your machine, follow these steps:
1. Clone the repository:
```
git clone https://github.com/Bukharney/Typescript-MergeFunction.git
```2. Install the dependencies:
```
cd Typescript-MergeFunction
npm install
```3. Test the application:
```
npm test
```
4. Execute code:
```
npm start
```