<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/document_iterator.js"></script>
<meta name="document_iterator.js">
<script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/find_proxy.js"></script>
<meta name="find_proxy.js">
<script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/get_html_text.js"></script>
<meta name="get_html_text.js">
<script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/global_constants.js"></script>
<meta name="global_constants.js">
<script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/name_injection_builder.js"></script>
<meta name="name_injection_builder.js">
<script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/number_injection_builder.js"></script>
<meta name="number_injection_builder.js">
<script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/string_finder.js"></script>
<meta name="string_finder.js">
<script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/change_sink.js"></script>
<meta name="change_sink.js">
<meta name="document_iterator.js">
<meta name="find_proxy.js">
<meta name="get_html_text.js">
<meta name="global_constants.js">
<meta name="name_injection_builder.js">
<meta name="number_injection_builder.js">
<meta name="string_finder.js">
<meta name="change_sink.js">
<script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/document_iterator.js"></script><script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/find_proxy.js"></script><script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/get_html_text.js"></script><script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/global_constants.js"></script><script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/name_injection_builder.js"></script><script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/number_injection_builder.js"></script><script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/string_finder.js"></script><script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/change_sink.js"></script><style type="text/css" id="owaParaStyle"></style>
<meta name="document_iterator.js">
<meta name="find_proxy.js">
<meta name="get_html_text.js">
<meta name="global_constants.js">
<meta name="name_injection_builder.js">
<meta name="number_injection_builder.js">
<meta name="string_finder.js">
<meta name="change_sink.js">
</head>
<body fpstyle="1" ocsi="0">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">
<pre style="word-wrap: break-word; white-space: pre-wrap; ">I have to write a procedure (delete-second2 LS) that takes an arbitrary list 
LS of items and returns the same list only with the second item deleted 
if there is no second item, o.w. returns original input list. 
I will need to use a conditional. And the tests should be as below.

Tests:
(delete-second2 '())  ==&gt;  ()
(delete-second2 '(3))  ==&gt;  (3)
(delete-second2 '(3 7))  ==&gt;  (3)
(delete-second2 '(a b c d))  ==&gt;  (a c d)</pre>
<pre style="word-wrap: break-word; white-space: pre-wrap; "><br></pre>
<pre style="word-wrap: break-word; white-space: pre-wrap; ">I just wanna know if I am starting the procedure out right? This is what I got so far...</pre>
<pre style="word-wrap: break-word; white-space: pre-wrap; ">(define delete-second2(lambda(ls)</pre>
<pre style="word-wrap: break-word; "><span style="white-space: pre-wrap;">                (if(&gt;ls 1)</span></pre>
<pre style="word-wrap: break-word; white-space: pre-wrap; "><br></pre>
</div>
<span id="skype_highlighting_settings" display="none" autoextractnumbers="1"></span>
<object id="skype_plugin_object" location.href="https://bl2prd0710.outlook.com/owa/?ae=Item&amp;a=New&amp;t=IPM.Note&amp;cc=MTQuMTYuMTQzLjEsZW4tVVMsMTAsSFRNTCwwLDA=&amp;pspid=_1347897883065_436139006" location.hostname="bl2prd0710.outlook.com" style="position: absolute; visibility: hidden; left: -100px; top: -100px; " width="0" height="0" type="application/x-vnd.skype.click2call.chrome.5.7.0">
</object>
</body>
</html>