10 lines
247 B
C#
10 lines
247 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public static class SumOfMultiples
|
|
{
|
|
public static int To(IEnumerable<int> multiples, int max)
|
|
{
|
|
throw new NotImplementedException("You need to implement this function.");
|
|
}
|
|
} |