1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-08 01:26:57 +02:00
CodeWars/7kyu/parts_of_a_list/solution.cs
Matej Focko fc899b0b02
chore: initial commit
Signed-off-by: Matej Focko <mfocko@redhat.com>
2021-12-28 16:19:58 +01:00

19 lines
591 B
C#

public class PartList
{
public static string[][] Partlist(string[] arr)
{
string[][] result = new string[arr.Length - 1][];
for (int i = 0, upTo = arr.Length - 1; i < upTo; i++)
{
result[i] = new string[2];
result[i][0] = "";
for (int j = 0; j <= i; j++) result[i][0] += arr[j] + " ";
result[i][0] = result[i][0].Trim();
result[i][1] = "";
for (int j = i + 1; j < arr.Length; j++) result[i][1] += arr[j] + " ";
result[i][1] = result[i][1].Trim();
}
return result;
}
}