-
-
Notifications
You must be signed in to change notification settings - Fork 360
/
Copy pathBirdWatcher.cs
39 lines (32 loc) · 1.02 KB
/
BirdWatcher.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
class BirdCount
{
private int[] birdsPerDay;
public BirdCount(int[] birdsPerDay)
{
this.birdsPerDay = birdsPerDay;
}
public static int[] LastWeek()
{
throw new NotImplementedException("Please implement the (static) BirdCount.LastWeek() method");
}
public int Today()
{
throw new NotImplementedException("Please implement the BirdCount.Today() method");
}
public void IncrementTodaysCount()
{
throw new NotImplementedException("Please implement the BirdCount.IncrementTodaysCount() method");
}
public bool HasDayWithoutBirds()
{
throw new NotImplementedException("Please implement the BirdCount.HasDayWithoutBirds() method");
}
public int CountForFirstDays(int numberOfDays)
{
throw new NotImplementedException("Please implement the BirdCount.CountForFirstDays() method");
}
public int BusyDays()
{
throw new NotImplementedException("Please implement the BirdCount.BusyDays() method");
}
}