Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,923 questions

51,856 answers

573 users

How to split array of numbers into two groups by criteria in C#

1 Answer

0 votes
using System;
using System.Linq;

class Program
{
    static void Main() {
        int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 };

        var result = from n in arr
                        group n by (n % 2 == 0) into groups
                        select groups;


        foreach (IGrouping<bool, int> group in result) {
            if (group.Key == true)
                Console.WriteLine("Divide by 2");
            else
                Console.WriteLine("Not Divide by 2");

            foreach (int number in group)
                Console.WriteLine(number);
        }
    }
}



/*
run:

Not Divide by 2
1
3
5
7
9
11
13
Divide by 2
2
4
6
8
10
12

*/

 



answered Dec 30, 2022 by avibootz

Related questions

2 answers 235 views
1 answer 234 views
1 answer 152 views
1 answer 183 views
1 answer 154 views
...