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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T02:28:04+00:00 2026-06-12T02:28:04+00:00

I have a list with some values, lets say 1 2 3 4 5

  • 0

I have a list with some values, lets say 1 2 3 4 5 6

I need to pair them up like this:
12 13 14 15 16 23 24 25 26 34 35 36 45 46 56

Basically, I need to mix them all up to create unique sets of values.

Do you have any ideas on how to create a new list like this?

Thank you for your input!

  • 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-12T02:28:06+00:00Added an answer on June 12, 2026 at 2:28 am

    For the data from your sample you can do it with a trivial pair of nested loops:

    var list = new List<int>{1,2,3,4,5,6};
    var res = new List<int>();
    for (int i = 0 ; i != list.Count ; i++) {
        for (int j = i+1 ; j != list.Count ; j++) {
            res.Add(list[i]*10+list[j]);
        }
    }
    

    For more complex data, you can use a string concatenation trick:

    var list = new List<int>{98,76,54,32,10};
    var res = new List<int>();
    for (int i = 0 ; i != list.Count ; i++) {
        for (int j = i+1 ; j != list.Count ; j++) {
            res.Add(int.Parse(string.Format("{0}{1}", list[i], list[j])));
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have list of catalog paths and need to filter out some of them.
I have dynamically created some list of RadioButtons with some values. pro grammatically I
I have some questions about the default values in a function parameter list Is
I have created a repeat control that list some documents. I would like to
Say you have a std::list of some class. There are two ways you can
Lets say I have 4 different values A,B,C,D with sets of identifiers attached. A={1,2,3,4,5}
Lets say you have various objects of arbitrary type that you would like to
Lets say we have this markup: <div id=container> <ul></ul> <ul></ul> </div> Where the format
Okay lets say I have a list, and I want to check if that
Let's say we have a code list of all the countries including their country

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.