Showing your test cases would be helpful, so we can see exactly what you&#39;ve tested.<br><br>One thing I notice right off the bat is that your function 
<br>insert-everywhere/in-all-words doesn&#39;t fulfill the stated contract.<br>In particular, the else clause doesn&#39;t return a list of words.<br>(consing a list of words on to a list of words doesn&#39;t yield another list of words.&nbsp; You probably meant to use append.)<br>
<br>--Mark<br><br>