[EASY] Lowest Unique Number - CodeEval
[EASY] Lowest Unique Number – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/103/
And here is my solution. I get 100% with this code.
using System; using System.Collections.Generic; using System.IO; using System.Linq; class Program { static void Main(string[] args) { StreamReader reader = new StreamReader(args[0]); List lines = new List(); using (reader) { string line = reader.ReadLine(); while (line != null)…
View On WordPress











