Ejemplo n.º 1
0
 static void PrintList(ListWithInfo listInfo)
 {
     foreach (var x in listInfo.list)
     {
         System.Console.WriteLine(x);
     }
 }
Ejemplo n.º 2
0
 static string CreateResultString(ListWithInfo listInfo)
 {
     return($"Steps Taken:{listInfo.steps}  Passes:{listInfo.passes}  Swaps: {listInfo.swaps}");
 }