Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebyx07/datastructures-homework-18
https://github.com/sebyx07/datastructures-homework-18
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sebyx07/datastructures-homework-18
- Owner: sebyx07
- Created: 2014-05-21T22:18:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-12-21T22:06:18.000Z (about 5 years ago)
- Last Synced: 2023-08-19T19:32:59.114Z (over 1 year ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures Homework 18
Tests are found in test/
all are passingI 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
```