<p><br>
Thank you all for your time and advice. I will start from scratch with this in mind and let you know how I get on. </p>
<p>Sean</p>
<p> On Jul 2, 2012 1:51 AM, &quot;Dave Yrueta&quot; &lt;<a href="mailto:dyrueta@gmail.com">dyrueta@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; I should have been more explicit:  &quot;ensuring the function design conforms to its contract&quot; means testing it in the manner demonstrated by Matthias. &quot;Check-expect&quot; is your friend :).<br>
&gt; On Jul 1, 2012, at 4:12 PM, Matthias Felleisen wrote:<br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; On Jul 1, 2012, at 4:17 PM, Sean Kemplay wrote:<br>
&gt; &gt;<br>
&gt; &gt;&gt; Looking back, I am wondering if my solution is a bit of a cheat - specifically :<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; (define (insert-everwhere/in-one-word s word)<br>
&gt; &gt;&gt; (make-words s word word))<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; It&#39;s not a cheat, it&#39;s wrong. I did you a favor and worked out a failing test case. See below.<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; On Jul 1, 2012, at 6:46 PM, Dave Yrueta wrote:<br>
&gt; &gt;<br>
&gt; &gt;&gt; Try working through this exercise by systematically applying the design recipe.  That is, take the time to make your data definitions explicit, and begin the definition of each helper function with a contract, purpose statement, and template.  In my opinion, more than any other exercise in HtDP, the solution to this exercise relies on paying very close attention to how the data definitions, function contracts and function templates interact. If you allow the data definitions to shape the function templates, and are rigorous about ensuring the function designs conform to their contracts, the solution should fall into place.<br>

&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; The above is the best advice the list can give you. -- Matthias<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; ;; World  = [Listof Letter] ;; see chapter IV<br>
&gt; &gt; ;; Letter = Symbol<br>
&gt; &gt;<br>
&gt; &gt; ;; Letter Word -&gt; [Listof Word]<br>
&gt; &gt; ;; the function says: insert _s_ in all positions in _word_<br>
&gt; &gt;<br>
&gt; &gt; (check-expect (insert-everwhere/in-one-word &#39;a &#39;(w o))<br>
&gt; &gt;              &#39;((a w o) (w a o) (w o a)))<br>
&gt; &gt; (check-expect (insert-everwhere/in-one-word &#39;a &#39;(w w o))<br>
&gt; &gt;              &#39;((a w w o) (w a w o) (w w a o) (w w o a)))<br>
&gt; &gt;<br>
&gt; &gt; (define (insert-everwhere/in-one-word s word)<br>
&gt; &gt; (make-words s word word))<br>
&gt; &gt;<br>
&gt; &gt; ;; Letter Word Word -&gt; [Listof Word]<br>
&gt; &gt; ;; insert _s_ in all positions in _word2_ using _word1_ as a list of insertion points<br>
&gt; &gt; ;; intended usage: (make-words letter word word) i.e. word1 = word2 initially<br>
&gt; &gt;<br>
&gt; &gt; (check-expect (make-words &#39;a &#39;(w o) &#39;(w o)) &#39;((a w o) (w a o) (w o a)))<br>
&gt; &gt; (check-expect (make-words &#39;a &#39;(w w o) &#39;(w w o)) &#39;((a w w o) (w a w o) (w w a o) (w w o a)))<br>
&gt; &gt;<br>
&gt; &gt; (define (make-words s word1 word2)<br>
&gt; &gt; (cond<br>
&gt; &gt;   [(empty? word1) (cons (append word2 (cons s empty)) empty)]<br>
&gt; &gt;   [else (cons (insert-symbol s (first word1) word2) (make-words s (cdr word1) word2))]))<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; ;; Letter Letter Word -&gt; Word<br>
&gt; &gt; ;; add _new_ in front of each occurrence of _old_ in _word_<br>
&gt; &gt;<br>
&gt; &gt; (check-expect (insert-symbol &#39;a &#39;b &#39;(c d e)) &#39;(c d e)) ;; running in BSL with ..<br>
&gt; &gt; (check-expect (insert-symbol &#39;a &#39;b &#39;(b o b)) &#39;(a b o a b))<br>
&gt; &gt;<br>
&gt; &gt; (define (insert-symbol new old word)<br>
&gt; &gt; (cond<br>
&gt; &gt;   [(empty? word) empty]<br>
&gt; &gt;   [(symbol=? (first word) old) (cons new (cons old (insert-symbol new old (rest word))))]<br>
&gt; &gt;   [else (cons (first word) (insert-symbol new old (rest word)))]))<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; ____________________<br>
&gt; &gt;  Racket Users list:<br>
&gt; &gt;  <a href="http://lists.racket-lang.org/users">http://lists.racket-lang.org/users</a><br>
&gt;</p>