Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hgwood/codingame-utils
Utility functions for CodinGame
https://github.com/hgwood/codingame-utils
Last synced: 25 days ago
JSON representation
Utility functions for CodinGame
- Host: GitHub
- URL: https://github.com/hgwood/codingame-utils
- Owner: hgwood
- License: mit
- Created: 2016-11-28T19:59:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-03T20:05:31.000Z (almost 8 years ago)
- Last Synced: 2024-10-07T13:07:18.901Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 420 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Utility functions for CodinGame
Includes helpers for:
- assertion
- parsing
- collections
- functional programming
- 2D vector manipulation## Getting started
Start using these functions in CodinGame right now by copying the content of
https://unpkg.com/codingame-utils/dist/index.js into the CodinGame IDE! You
will then have access to the functions through the `utils` variable.```js
utils.assert.ok(false)
utils.functions.compose(f, g)
utils.vector.between({x: 0, y: 3}, {x: 1, y: 2})
```