https://github.com/sebyx07/datastructures-homework-18
https://github.com/sebyx07/datastructures-homework-18
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sebyx07/datastructures-homework-18
- Owner: sebyx07
- Created: 2014-05-21T22:18:34.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2019-12-21T22:06:18.000Z (over 5 years ago)
- Last Synced: 2024-12-28T23:12:49.616Z (6 months 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
```