Created
March 26, 2021 09:38
-
-
Save creyke/63fb3dffb032518353f2f757117d2d4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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