vote up 0 vote down star

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

flag
If this is homework, can you post what work you've done so far to try and solve the problem? – Welbog Sep 8 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 at 15:57

1 Answer

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

3

link|flag
Thanks, but I can't read the presumabley APL font. Can you post it in psuedo code? – Paul Mansour Sep 8 at 15:59
first(iota 1 plus shape arg)without arg – slightAPL Sep 8 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 at 16:09

Your Answer

Get an OpenID
or

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