Search Results

3
votes

Haskell: recursion with array arguments

I copied your goal notes: -- assume n is 10 for this question n=10 -- create a list of all natural numbers from 1 to n (variable is 'allNumbers' is code) allNumbers = [1..n] -- cr …
3
votes

How does primitive recursion differ from “normal” recursion ?

A simplified answer is that primitive recursive functions are those which are defined in terms of other primitive recursive functions, and recursion on the structure of natural numbers. Natural num …