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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T09:07:51+00:00 2026-05-11T09:07:51+00:00

I have an integer collection. I need to get all possibilites that sum of

  • 0

I have an integer collection. I need to get all possibilites that sum of values are equal to X.

I need something like this.

It can be written in: delphi, c#, php, RoR, python, cobol, vb, vb.net

  • 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-11T09:07:52+00:00Added an answer on May 11, 2026 at 9:07 am

    That’s a subset sum problem. And it is NP-Complete.

    The only way to implement this would be generate all possible combinations and compare the sum values. Optimization techniques exists though.

    Here’s one in C#:

    static class Program {     static int TargetSum = 10;     static int[] InputData = new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };      static void Main()     {         // find all permutations         var permutations = Permute(InputData);          // check each permutation for the sum         foreach (var item in permutations) {              if (item.Sum() == TargetSum) {                  Console.Write(string.Join(' + ', item.Select(n => n.ToString()).ToArray()));                 Console.Write(' = ' + TargetSum.ToString());                 Console.WriteLine();              }         }          Console.ReadKey();     }      static IEnumerable<int[]> Permute(int[] data) { return Permute(data, 0); }      static IEnumerable<int[]> Permute(int[] data, int level)     {         // reached the edge yet? backtrack one step if so.         if (level >= data.Length) yield break;          // yield the first #level elements         yield return data.Take(level + 1).ToArray();          // permute the remaining elements         for (int i = level + 1; i < data.Length; i++) {             var temp = data[level];             data[level] = data[i];             data[i] = temp;              foreach (var item in Permute(data, level + 1))                 yield return item;              temp = data[i];             data[i] = data[level];             data[level] = temp;         }      } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.