+1 (229) 255-3712
glass
pen
clip
papers
heaphones

  

I'm working on a software engineering question and need an explanation and answer to help me learn.

Implement a Scheme/Racket function (seq f (start step end)) that produces a list of values (f(start),f(start+step),…,f(start+n*step)), where n is the largest integer such that start+nstepend and start+(n+1)step>end


You cannot use the built-in map function.