How do we verify in scheme with the do cicle, if an elemment of the first list is in the second?
|
|
The do loop in racket has an interesting structure:
The documentation for r5rs provides an example:
That statement returns 25, the sum of the elements of the loop. The Ok, aside from the racket preference of square brackets, this looks good. There's a do loop and a list. The loop does something over that list. We can use that to write a function that finds a specific atom in a list (using the racket brackets):
Instead of initializing and adding the value
Gives #f, as expected. Similarly:
Gives #t. Are you able to generalize finding a specific element in a list with a do loop into your specific question? |
||||
|