[MODERATE] Decimal To Binary - CodeEval
[MODERATE] Decimal To Binary – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/27/
And here is my solution. I get 100% with this code.
using System; using System.Collections.Generic; using System.IO; 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) { lines.Add(line);…
View On WordPress
















