Sha256: d7dd0beed3d3d785bfdc3e7d48309479e589809c835bd8f166ee4b5a6d021b23
Contents?: true
Size: 857 Bytes
Versions: 59
Compression:
Stored size: 857 Bytes
Contents
# Custom Set Create a custom set type. Sometimes it is necessary to define a custom data structure of some type, like a set. In this exercise you will define your own set. How it works internally doesn't matter, as long as it behaves like a set of unique elements. ## Setup Go through the setup instructions for ECMAScript to install the necessary dependencies: http://exercism.io/languages/ecmascript ## Requirements Install assignment dependencies: ```bash $ npm install ``` ## Making the test suite pass Execute the tests with: ```bash $ npm test ``` In the test suites all tests but the first have been skipped. Once you get a test passing, you can enable the next one by changing `xtest` to `test`. ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
59 entries across 59 versions & 1 rubygems