Question: In scheme, create a function(s) that counts how many times the same string shows up in a list, for example (dog, dog, dog, cat, mouse,
In scheme, create a function(s) that counts how many times the same string shows up in a list, for example (dog, dog, dog, cat, mouse, mouse) then manipulate the strings so they are sorted as such ((dog, 3) , (cat,1) , (mouse,2 )) , sort them in a new list as ordered pairs (("dog".3) ,("cat".1), ("mouse". 2))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
