mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
20 lines
591 B
C#
20 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;
|
||
|
}
|
||
|
}
|