Skip to content

Commit 530e244

Browse files
authored
Update return type for BottleSong stub (#2411)
1 parent 26187e8 commit 530e244

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
using System.Collections.Generic;
2+
13
public static class BottleSong
24
{
3-
public static string Recite(int startBottles, int takeDown)
5+
public static IEnumerable<string> Recite(int startBottles, int takeDown)
46
{
57
throw new NotImplementedException("You need to implement this method.");
68
}
7-
}
9+
}

0 commit comments

Comments
 (0)