Skip to content

Instantly share code, notes, and snippets.

@creyke
Created March 26, 2021 09:38
Show Gist options
  • Save creyke/63fb3dffb032518353f2f757117d2d4c to your computer and use it in GitHub Desktop.
Save creyke/63fb3dffb032518353f2f757117d2d4c to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
namespace MarketSort
{
interface ISorter
{
IEnumerable<string> Sort(IEnumerable<string> values);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment