using System.Collections.Generic;
public static void Main()
List<int> ints = new List<int>() { 1, 3, 4, 9, 2, 30, 2, 11, 2, 10, 2, 6 };
double d1 = 24.5, d2 = 25.5;
Console.WriteLine(AddTwoDoubles(d1, d2).ToString());
Console.WriteLine(FindMax(ints).ToString());
List<int> uniq = FindUniques(ints);
Console.WriteLine(string.Join(", ", uniq));
public static double AddTwoDoubles(double d1, double d2)
public static int FindMax(List<int> ints)
public static List<int> FindUniques(List<int> ints){
List<int> rv = new List<int>();