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

  • Home
  • SEARCH
  • 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 5844311
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:16:28+00:00 2026-05-22T12:16:28+00:00

Starting from a table like this: | Code | Year | ————— | A01

  • 0

Starting from a table like this:

| Code | Year |
---------------
| A01  | 2001 |
| A01  | 2002 |
| B01  | 2002 |
| C01  | 2003 |

I have to arrive to this:

| Code | Year |
---------------
| A01  | 2001 |
| B01  | 2002 |
| C01  | 2003 |

I have to group the first column (Code) and from the second (Year) I have to get the data ‘less common as possible’ compared to all the other records. I try to explain this with the example: for the code ‘A01’ I have 2 years: ‘2001’ and ‘2002’. I have to take ‘2001’ because it’s the one that not recurs in the other records. In the case that there aren’t available values ‘Year’ that not recurs in the other records, it’s good to take whatever value.

The data are in the form of array in memory and to interact with them I’m useng some LINQ queries.

Thank you in advance!
Pileggi

  • 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-05-22T12:16:29+00:00Added an answer on May 22, 2026 at 12:16 pm

    Here is the right answer (to be compared with Alex Aza’s one : filteredItemsAlexAza and filteredItemsSsithra give different results since the less common data is not also the minimum one anymore – here 2005 instead of 2001 for A01)

    class Program
    {
        public static void Main(string[] args)
        {
            var items = new List<Item>
            {
                new Item { Code = "A01", Year = "2005" },
                new Item { Code = "A01", Year = "2002" },
                new Item { Code = "B01", Year = "2002" },
                new Item { Code = "C01", Year = "2003" },
            };
    
            var filteredItemsAlexAza = items.Select(cod => cod.Code).Distinct().Select(cod => items.OrderBy(itm => itm.Year).First(itm => itm.Code == cod)).ToList();
            var filteredItemsSsithra = items
                .Select(item => new { Item = item, NbItemsWithSameYear = items.Where(i => i.Year == item.Year).Count() })
                .GroupBy(ano => ano.Item.Code)
                .Select(group => group.OrderBy(ano => ano.NbItemsWithSameYear).First().Item)
                .ToList();
        }
    
        public class Item
        {
            public string Code { get; set; }
            public string Year { get; set; }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some code that grabs some rows from a table and I want
I have an existing table structure that looks something like this: AnimalTable ------------- |Id
I have this problem--- Write code that will print a multiplication table for 10
Starting from scratch is hard. How do you do it? I quite like color
I'm just starting to learn F#. I wrote this F#/ADO.NET code last night. In
I have this small table of data. Dir LinkL LinkH East 19 27 East
I need to create a table with just 1 column containing times (starting from
If i have SQL Server tables like this: Location ---------- LocationId int PK Field1
We have the following code : String templateQuery = select * from my_table where
Starting from ASP.NET MVC Preview 3, HTML.Button ( and other related HTML controls) are

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.