Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
2
Task/Filter/Racket/filter-1.rkt
Normal file
2
Task/Filter/Racket/filter-1.rkt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
-> (filter even? '(0 1 2 3 4 5 6 7 8 9))
|
||||
'(0 2 4 6 8)
|
||||
3
Task/Filter/Racket/filter-2.rkt
Normal file
3
Task/Filter/Racket/filter-2.rkt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
-> (partition even? '(0 1 2 3 4 5 6 7 8 9))
|
||||
'(0 2 4 6 8)
|
||||
'(1 3 5 7 9)
|
||||
2
Task/Filter/Racket/filter-3.rkt
Normal file
2
Task/Filter/Racket/filter-3.rkt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
-> (for/list ([x '(0 1 2 3 4 5 6 7 8 9)] #:when (even? x)) x)
|
||||
'(0 2 4 6 8)
|
||||
Loading…
Add table
Add a link
Reference in a new issue