Skip to content

Instantly share code, notes, and snippets.

@floh1695
Created April 26, 2018 17:46
Show Gist options
  • Save floh1695/6489d9c9eea8987c0a857e1e7cb2769c to your computer and use it in GitHub Desktop.
Save floh1695/6489d9c9eea8987c0a857e1e7cb2769c to your computer and use it in GitHub Desktop.
using System.Linq;
class Kata
{
public static long MinValue(int[] a)
{
var numbers = a
.ToList()
.Distinct()
.OrderBy(n => n);
return int.Parse(string.Join("", numbers));
}
}
@floh1695
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment