question archive Writea function my-ormap that behaves just like the built-in function ormap
Subject:Computer SciencePrice: Bought3
Writea function my-ormap that behaves just like the built-in function ormap. Do not use recursion or helper functions. Use lambda, andmap and not, and the function parameters pred and lst. Use Dr. Racket, thank you. Example: (my-ormap even? (list 1 3 5 7)) produces false, and (my-ormap even? (list 1 2 3 5 7 "fish")) produces true