[MODERATE] Remove Characters - CodeEval
[MODERATE] Remove Characters – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/13/
And here is my solution. I get 100% with this code.
using System; using System.IO; using System.Collections.Generic; class Program { static void Main(string[] args) { StreamReader reader = new StreamReader(args[0]); List lines = new List(); List results = new List(); char[] separator = new char[] { ','}; string[] splitLine = new…
View On WordPress












