[EASY] Read More - CodeEval
[EASY] Read More – CodeEval
Here is the problem: https://www.codeeval.com/open_challenges/115/ And here is my solution. I get 92% with this code.
using System; using System.Collections.Generic; using System.Text; using System.IO; class ReadMore { public static string line = null; static void Main(string[] args) { List readFile = ReadFile(args[0]); List formatText = FormatText(readFile); PrintFormatedText(formatText); }…
View On WordPress













