https://github.com/codenameyau/racket-quiz
Ruby Quiz problems with Racket
https://github.com/codenameyau/racket-quiz
Last synced: 6 months ago
JSON representation
Ruby Quiz problems with Racket
- Host: GitHub
- URL: https://github.com/codenameyau/racket-quiz
- Owner: codenameyau
- License: gpl-2.0
- Created: 2014-12-01T18:25:38.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-10T05:23:50.000Z (over 11 years ago)
- Last Synced: 2025-01-29T20:19:46.816Z (over 1 year ago)
- Language: Racket
- Size: 203 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
racket-quiz
===========
Ruby Quiz problems and algorithm implementations with Racket
###Description
Functional programming is elegant! See how programs are implemented in Racket.
List building operations:
- `list`
- `append`
- `range`
- `list-build`
List processing operations:
- `car`
- `cdr`
- `list-ref`
- `member`
- `length`
List iteration/filter operations:
- `map`
- `filter`
- `filter-not`
- `for-each`
Useful operations:
- `partition`
- `reverse`
- `shuffle`
- `remove*`