filmov
tv
Code Wars C# 8 kyu: Find Multiples of a Number

Показать описание
Beginner level C# object oriented programming series. Viewers are provided two integers as input. The first is the starting value (multiple) and the second is a limit. Your task is to create a list and fill it with all the multiples of the starting value, up to and including the limit. Then return that list. We'll go over 2 solutions- one using basic building blocks, the second is a one liner using LINQ.