An open API service indexing awesome lists of open source software.

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

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*`