Posts by Jose Felipe Blum de Araujo • 71 points
2 posts
-
0
votes2
answers180
viewsA: How to load a number list into a TXT file for a C#list?
If you want to play the read data from the file in an array or a list, the following code will serve: string[] lines = File.ReadAllLines(fileName); List<string> list = new…
-
7
votes1
answer861
viewsQ: Fill char matrix with random words
I’m trying to develop an algorithm that can get an array of strings, sort by word size downwards, and put them into a char matrix by fitting all the words together if possible. The idea of…