algorithms-sandbox/sorting/dotnet/Sorting/ISortable.cs

9 lines
142 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace Sorting
{
public interface ISortable
{
List<int> Sort(List<int> list);
}
}