We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26187e8 commit 530e244Copy full SHA for 530e244
exercises/practice/bottle-song/BottleSong.cs
@@ -1,7 +1,9 @@
1
+using System.Collections.Generic;
2
+
3
public static class BottleSong
4
{
- public static string Recite(int startBottles, int takeDown)
5
+ public static IEnumerable<string> Recite(int startBottles, int takeDown)
6
7
throw new NotImplementedException("You need to implement this method.");
8
}
-}
9
+}
0 commit comments