How do I remove a duplicate listing?
My class :
public class test
{
public string UserName { get; set; }
public List<int> Scores { get; set; }
}
Sample data
var tests = new List<test> {
new test
{
Scores = new List<int> { 1, 2, 3 },
UserName = "user1"
},
new test
{
Scores = new List<int> { 1, 5, 3 },
UserName = "user2"
},
new test
{
Scores = new List<int> { 1, 2, 3 },
UserName = "user3"
}
};
I need to remove duplicates based on the score.
For example, the above list is repeated scores of the two users.I need to remove one of the duplicated users. No matter what the user is removed.Only one is removed. I have no idea to do it.
Scenario : user1 and user3 is Repeated.
user1 or user3 Should be removed.One of the two should to stay
Following query groups tests by first test instance, which have same scores. Then you just select group keys:
Returns
user1
anduser2
. Same with lambda syntax:If you want last user to stay, then change
First
toLast
, butFirst
is more efficient here, because it stops enumeration earlier.