tracks/csharp/exercises/food-chain/FoodChain.cs in trackler-2.0.8.33 vs tracks/csharp/exercises/food-chain/FoodChain.cs in trackler-2.0.8.34
- old
+ new
@@ -1,14 +1,14 @@
using System;
public static class FoodChain
{
- public static string Song()
+ public static string Verse(int number)
{
throw new NotImplementedException("You need to implement this function.");
}
- public static string Verse(int number)
+ public static string Verse(int begin, int end)
{
throw new NotImplementedException("You need to implement this function.");
}
}
\ No newline at end of file