Counting Challenge
Counting Challenge
I tried using a two lettered Linux application to count the characters in the paragraph but the answer i get 593 is somehow incorrect. Is there some mistake that I could be making that would produce an incorrect output for that application? Plz pardon the noobishness of this question.
Quod me nutrit me destruit
Re: Counting Challenge
You're probably getting the space at the end of the paragraph, which probably is not what was intended.0mega24 wrote:I tried using a two lettered Linux application to count the characters in the paragraph but the answer i get 593 is somehow incorrect. Is there some mistake that I could be making that would produce an incorrect output for that application? Plz pardon the noobishness of this question.
I think that's a stupid chalenge
I used this javascript code to count characters
And got 595
but as I understand from previous posts the right answer is 592. Why?
I used this javascript code to count characters
Code: Select all
var q = document.getElementsByTagName('p');
q[1].innerHTML.length
but as I understand from previous posts the right answer is 592. Why?