my exercism solutions
https://exercism.org/profiles/benharri
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
259 B
10 lines
259 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
|
||
|
public static class SumOfMultiples
|
||
|
{
|
||
|
public static int Sum(IEnumerable<int> multiples, int max)
|
||
|
=> Enumerable.Range(0, max).Where(c => multiples.Any(m => c % m == 0)).Sum();
|
||
|
}
|