For example, given 1 8 4 9 0 2 , return 3. Thanks.

link|improve this question
If this is homework, can you post what work you've done so far to try and solve the problem? – Welbog Sep 8 '09 at 15:50
It's not homework, though I do work from home. But I can take the max of the list, generate the indices up to that maximum number, remove the items from the list then take the min of the remaining items, but this is not going to be a good solution. – Paul Mansour Sep 8 '09 at 15:57
feedback

2 Answers

up vote 5 down vote accepted
  {⍬⍴(⍳1+⍴⍵)~⍵} 1 8 4 9 0 2

3

link|improve this answer
Thanks, but I can't read the presumabley APL font. Can you post it in psuedo code? – Paul Mansour Sep 8 '09 at 15:59
first(iota 1 plus shape arg)without arg – slightAPL Sep 8 '09 at 16:01
Thanks! That's genious. No matter what the magnitude of the given integers are, the answer must be less than 1 plus the count. Very nice. – Paul Mansour Sep 8 '09 at 16:09
feedback

The case where they are all used seems to have "one plus the largest" as the answer, but whether that is "from" the list is another question.

@Paul, are you using APL385 as your browser's font? That seems to have cleared up many things from this end.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown