Exemplo n.º 1
0
 private void CountOranges(int t, int b, int[] oranges, int s)
 {
     Console.WriteLine(BoundryService.RightSideInRange(s, t, b, oranges));
 }
Exemplo n.º 2
0
 private void CountApples(int s, int a, int[] apples, int t)
 {
     Console.WriteLine(BoundryService.LeftSideInRange(s, t, a, apples));
 }