Closed Tmoney2020 closed 4 years ago
Nicely done.
Just know that
var doubleTheNumbers = numbers.Select(number => number * 2);
return doubleTheNumbers;
can be
return numbers.Select(number => number * 2);
Your homework 02 - 02 C# Iteration - Working with LINQ was marked: Meets Expectations
“Well done!” — via Gavin Stark
Learning programming takes practice and the best practice is repetition. This exercise will allow you time to work on the basics of .NET and how to apply that logic to solving problems.
Objectives
After completing this assignment, you should be able to:
Instructions
git clone https://github.com/YOUR_NAME_HERE/net-iteration
cd net-iteration
dotnet restore
code .
dotnet watch test
Iterations.cs
and work on functions until the test passes. Once you are done with a test you can move to the next one by removing the(Skip = "Remove to run test")
from theFact
attribute. There are a total of 10 questions.Explorer Mode
Additional Resources
Reference the documentation to find what kind of helpful functions might already be in C#.