Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sebyx07/datastructures-homework-18


https://github.com/sebyx07/datastructures-homework-18

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Data Structures Homework 18

Tests are found in test/
all are passing

I used non-sql ideas for this problem

How player is stored:

```
player1: { id: 1234,
metPlayers: [1235, 1256]
player2: { id: 1235,
metPlayers: [1234, 1257]

...
```

So when a meeting is made player1 is inserted in player2 list and vice versa

To run it you need Node

```
cd /lib
node app.js
```