Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
rmres committed Oct 25, 2020
1 parent 925506f commit 2028648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appleandorange.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Solution {
static void countApplesAndOranges(int s, int t, int a, int b, int[] apples, int[] oranges) {
int countapples = 0;
int countoranges = 0;

foreach (int apple in apples) {
if (a + apple <= t && a + apple >= s) {
countapples++;
Expand Down

0 comments on commit 2028648

Please sign in to comment.