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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T20:55:54+00:00 2026-06-05T20:55:54+00:00

Suppose i have an array $x = (31,12,13,25,18,10); I want to reduce this array

  • 0

Suppose i have an array

$x = (31,12,13,25,18,10);

I want to reduce this array in such a way that the value of each array element is 32.
so after work my array will become

$newx = (32,32,32,13);

I have to generate this array in such a way the sum of array values is never greater than 32. so to create first value, I will reduce 1 from second index value i.e. 12, so the second value will become 11 and first index value will become 31+1 = 32. This process should continue so that each array value becomes equal to 32.

  • 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-05T20:55:56+00:00Added an answer on June 5, 2026 at 8:55 pm

    It’s easiest to use some basic math:

    $input = array(31,12,13,25,18,10);
    $val = 32;                                // set the value: 32
    $sum = array_sum($input);                 // calculate sum: 109
    $output = array_fill(0, $sum/$val, $val); // fill in int(109/32) = 3 reps of 32
    $rest = $sum % $val;                      // however, 109*32 = 96,
    if ($rest) {                              // so if there is a rest (here 13)
        $output[] = $rest;                    // we add the remaining 13
    }
    

    Final $output:

    array (
      0 => 32,
      1 => 32,
      2 => 32,
      3 => 13,
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have an array that mimics a database table. Each array element represents
Suppose I have an array like this: $array = array(a,b,c,d,a,a); and I want to
suppose I have an array of names, what I want is that I want
Suppose I have an array String[] which has 47 characters in each element. The
Suppose I have array of points.I want to draw the route of that points
Suppose I have an int-array and I want to modify it. I know that
Suppose I have and m x n array. I want to pass each column
Suppose that I have a 2D array (matrix) in Java like this... int[][] MyMat
Suppose I have some pointer, which I want to reinterpret as static dimension array
I have a question about Quantifiers. Suppose that I have an array and I

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.