<div dir="ltr">Hey,<div><br></div><div>>> <span style="font-size:12.8000001907349px">Firstly, I am confused as to how the doubled values are being added to</span></div><span style="font-size:12.8000001907349px">>> the undoubled number in the above example. It looks like only the</span><br style="font-size:12.8000001907349px"><span style="font-size:12.8000001907349px">>> individual numbers of the doubled values are being added</span><div><br></div><div>The assignment states "Add the <b>digits</b> of the doubled values and the undoubled digits", so it specifically states to add digits (which are 0 1 2 3 ... 9) and that is why when you have [2, 3, 16, 6] you do not simply do 2 + 3 + 16 + 6 but you do it digit wise 2 + 3 + 1 + 6 + 6. That is [2, 3, 16, 6] becomes "23166" and you simply sum all the digits.</div><div><br></div><div><span style="font-size:12.8000001907349px">>> If we are to follow the algorithm described (double the value of "every</span><br style="font-size:12.8000001907349px"><span style="font-size:12.8000001907349px">>> second digit" beginning from the right, last digit unchanged", then the</span><br style="font-size:12.8000001907349px"><span style="font-size:12.8000001907349px">>> above numbers are identical EXCEPT For the last digits (1 and 2)</span><br></div><div><span style="font-size:12.8000001907349px"><br></span></div><div><span style="font-size:12.8000001907349px">The assignment states "Add the digits of the doubled values <b>and the undoubled digits</b>", so the sum will be different for the two numbers provided in the example because both doubled and undoubled values (their digits actually) are being summed. That is why for the first number validates gives True and for the other it gives False.</span></div><div><span style="font-size:12.8000001907349px"><br></span></div><div><span style="font-size:12.8000001907349px">Hope that was clear enough for you to understand. You got confused by a single sentence in the assignment.</span></div><div><br></div><div>Konstantin</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 20, 2015 at 2:47 PM, Vaibhav Goel <span dir="ltr"><<a href="mailto:vgoel@fastmail.com" target="_blank">vgoel@fastmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">My apologies, this is only tangentially related to Haskell and I am not<br>
looking for a solution. I am confused with the assignment itself and<br>
hence asking here.<br>
<br>
The assignment<br>
(<a href="https://www.seas.upenn.edu/~cis194/spring13/hw/01-intro.pdf" target="_blank">https://www.seas.upenn.edu/~cis194/spring13/hw/01-intro.pdf</a>) says:<br>
<br>
====== BEGIN<br>
  Double the value of every second digit beginning from the right.<br>
That is, the last digit is unchanged; the second-to-last digit is dou-<br>
bled; the third-to-last digit is unchanged; and so on. For example,<br>
[1,3,8,6]<br>
becomes<br>
[2,3,16,6]<br>
<br>
  Add the digits of the doubled values and the undoubled dig-<br>
its from the original number. For example,<br>
[2,3,16,6]<br>
becomes<br>
2+3+1+6+6 = 18<br>
======== END<br>
<br>
Firstly, I am confused as to how the doubled values are being added to<br>
the undoubled number in the above example. It looks like only the<br>
individual numbers of the doubled values are being added<br>
<br>
Secondly, later on in the assignment:<br>
<br>
======== BEGIN<br>
Example<br>
:<br>
validate 4012888888881881 = True<br>
Example<br>
:<br>
validate 4012888888881882 = False<br>
<br>
========= END<br>
<br>
If we are to follow the algorithm described (double the value of "every<br>
second digit" beginning from the right, last digit unchanged", then the<br>
above numbers are identical EXCEPT For the last digits (1 and 2)<br>
<br>
<br>
Any help is appreciated in decoding these instructions.  Again please do<br>
not provide Haskell code, since I want to attempt to write it myself.  I<br>
am just looking for help with the algorithm.<br>
<br>
Regards,<br>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
</blockquote></div><br></div>