Advertisement
elena1234

CustomComparator- how Sort() work

Jan 26th, 2021 (edited)
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.89 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace CustomComparator
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             var numbers = Console.ReadLine().Split().Select(int.Parse).ToArray();
  11.             Array.Sort(numbers, (x, y) =>
  12.             {
  13.                 int compare = 0;
  14.                 if (x % 2 == 0 && y % 2 != 0)
  15.                 {
  16.                     compare = -1;
  17.                 }
  18.  
  19.                 else if (x % 2 != 0 && y % 2 == 0)
  20.                 {
  21.                     compare = 1;
  22.                 }
  23.  
  24.                 else if (x < y)
  25.                 {
  26.                     compare = -1;
  27.                 }
  28.  
  29.                 else if (x > y)
  30.                 {
  31.                     compare = 1;
  32.                 }
  33.  
  34.                 return compare;
  35.             });
  36.  
  37.             Console.WriteLine(string.Join(" ", numbers));
  38.         }
  39.     }
  40. }
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement