((1&{~+/)*./\(=1&{))1 1 1 3 2 4 1

I always get Index Error.

The point is to output two numbers, one that is the same as the first number in the list, the second which is the same as the number of times that number is repeated.

So this much works:

*./\(=1&{)1 1 1 3 2 4 1
1 1 1 0 0 0 0

I compare the first number against the rest of the list. Then I do an insertion of an and compression - and this gives me a 1 so long as I have an unbroken string of 1's, once it breaks the and fails and the zeros come forth.

I thought that I could then add another set of parens, get the lead element from the list again, and somehow record those numbers, the eventual idea would be to have another stage where I apply the inverse of the vector to the original list, and then use $: to get back for a recursive application of the same verb. Sort of like the quicksort example, which I thought I sort of understood, but I guess I don't.

But I can't even get close. I will ask this as a separate question so that people get proper credit for answering.

link|improve this question
feedback

2 Answers

J is 0 indexed, so you want to try this instead:

((0&{~+/)*./\(=0&{))1 1 1 3 2 4 1
link|improve this answer
Or work something out with {. I'm not super with tacit expressions so I can't get it to work right, sorry. – MPelletier Sep 15 '11 at 21:57
That was stupid of me, wasn't it....but there should have been a number at index 1 that I could have compared to and gotten the wrong result... All I can say is that yesterday I was playing with NARS2000, which is a version of old style APL that is free but it uses 1 origin indexing. Well, now I can continue experimenting. – Nick Sep 16 '11 at 2:27
feedback
   (0&{ , +/@(*./\)@(= 0&{)) 1 1 1 3 2 4 1
1 3

I'm not quite sure from your question whether that is the initial result that you were trying for?

This might be a simpler way of getting the number of times the first element is repeated.

   =/\ 1 1 1 3 2 4 1
1 1 1 0 0 0 0

I get the impression that you are wanting to end up with something similar to the following? (which gives the count of the consecutive repeats in the list)

  ([: #/.~ 0 , [: +/\ 2 ~:/\ ]) 1 1 1 3 2 2 4 1
3 1 2 1 1
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.