Advertisement
oldhowl

Untitled

Mar 10th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.40 KB | None | 0 0
  1.  internal class Program
  2.     {
  3.         private static string text = "maaiiiizzzzzzz";
  4.  
  5.  
  6.         public static void Main(string[] args)
  7.         {
  8.             var t = (from c in text.ToArray()
  9.                 group c by c
  10.                 into groupFreq
  11.                 select groupFreq).OrderByDescending(x => x.Count()).First();
  12.  
  13.             Console.WriteLine(t.Key);
  14.            
  15.         }
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement