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 89005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:38:55+00:00 2026-05-10T22:38:55+00:00

I feel that it should be something very simple and obvious but just stuck

  • 0

I feel that it should be something very simple and obvious but just stuck on this for the last half an hour and can’t move on.

All I need is to split an array of elements into N groups based on element index.

For example we have an array of 30 elements [e1,e2,…e30], that has to be divided into N=3 groups like this:

group1: [e1, ..., e10] group2: [e11, ..., e20] group3: [e21, ..., e30] 

I came up with nasty mess like this for N=3 (pseudo language, I left multiplication on 0 and 1 just for clarification):

for(i=0;i<array_size;i++) {    if(i>=0*(array_size/3) && i<1*(array_size/3) {       print 'group1';    } else if(i>=1*(array_size/3) && i<2*(array_size/3) {       print 'group2';    } else if(i>=2*(array_size/3) && i<3*(array_size/3)       print 'group3';    } } 

But what would be the proper general solution?

Thanks.

  • 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. 2026-05-10T22:38:56+00:00Added an answer on May 10, 2026 at 10:38 pm

    What about something like this?

    for(i=0;i<array_size;i++) {   print 'group' + (Math.floor(i/(array_size/N)) + 1) } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I feel like an idiot, because i fight with something, that should be very
I have a computational geometry problem that I feel should have a relatively simple
I feel like the answer to this question is really simple, but I really
Thanks in advance, I feel like I'm overlooking something very simple. I have some
This is very simple, but I'm being rather stupid about it. I have a
I feel that both are the same thing, but I am not sure.
In my heart, I feel that there must be a super simple recursive solution
I've implemented that default swipe-to-delete gesture in UITableView, and now I feel that this
I have been researching this for a few hours and I feel that I
At work, my PC is slow. I feel that I can be way more

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.