<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" id="owaParaStyle"></style>
</head>
<body fpstyle="1" ocsi="0">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">I need help with making a function that deletes the nth term from a list.(<span style="white-space: pre-wrap; ">list LS with its Nth element (with indexes
</span><span style="white-space: pre-wrap; ">starting at 0) deleted)</span>
<div>So far I have&nbsp;</div>
<div><br>
</div>
<div>
<div>(define (deleteNth N ls)</div>
<div>&nbsp; &nbsp; (if (null? ls)</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; ls</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; (deleteNth (- N 1) (cdr ls))))</div>
</div>
<div><br>
</div>
<div>The results should be ...</div>
<div><br>
</div>
<div>
<pre style="word-wrap: break-word; white-space: pre-wrap; ">(deleteNth 4 '()) returns ()
(deleteNth 0 '(a b c)) returns (b c)
(deleteNth 3 '(a b c)) returns (a b c)</pre>
</div>
</div>
</body>
</html>