Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7917289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T15:05:44+00:00 2026-06-03T15:05:44+00:00

I have solved the problem with including terminating method. If(indexes==0){ endUp = YES; }

  • 0

I have solved the problem with including terminating method.

If(indexes==0){
endUp = YES;
}

Thanks for pointing me the right direction. It wasn’t problem of the shuffle.
Alessign

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T15:05:46+00:00Added an answer on June 3, 2026 at 3:05 pm

    the error may be in the loop you use to shuffle the first array.
    You don’t post that part of your code…is it something like this?

    for (int i=0; i<[indexes count]; i++){
    // (...)
            [indexes removeObjectAtIndex:index]; 
    // (...)
    }
    

    this may be better:

    int arrayCount = [indexes count];
    for (int i=0; i<arrayCount; i++){
    // (...)
            [indexes removeObjectAtIndex:index]; 
    // (...)
    }
    

    this complete code works well, with no errors or crashes:

    int length = 10; 
    NSMutableArray* indexes = [[NSMutableArray alloc] initWithCapacity:length];
    
    for (int i=0; i<10; i++) [indexes addObject:[NSNumber numberWithInt:i]];
    NSMutableArray*shuffle = [[NSMutableArray alloc] initWithCapacity:length];
    
    
    int arrayCount = [indexes count];
    for (int i=0; i<arrayCount; i++){
    
        int index = arc4random()%[indexes count];
        NSLog(@"___index: %i", index);
        NSLog(@"indexes: %@ ", indexes);
    
        [shuffle addObject:[indexes objectAtIndex:index]];
        [indexes removeObjectAtIndex:index]; 
        NSLog(@"shuffle: %@ ", shuffle);
    }
    
    
    for (int i=0; i<[shuffle count]; i++){
        int questionNumber = [[shuffle objectAtIndex:i] intValue] + 1; 
        NSLog(@"questionNumber: %i ", questionNumber);
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have solved this problem, I just need to know what to do. I
I'm curious how others have solved this problem, and what problems might lurk behind
This is an Amazon interview Question.I have solved this problem in O(n) using dynamic
NOTE: I have solved the majority of this problem but have run into a
I'm sure this is the kind of problem other have solved many times before.
Updated Problem solved, I have some design problem here. The directory looks like that:
Problem solved, see below Question I'm working in Flex Builder 3 and I have
I have asked this question before and the problem was half solved in the
I have some complicated, problem to be solved. Now I need to write such
I have almost solved this quadrant queries problem of Interviewstreet using segment trees with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.