Learning programming takes practice and the best practice is repetition. This exercise allows 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:
Demonstrate understanding of iteration/enumeration
Clone your repository: git clone https://github.com/YOUR_NAME_HERE/net-iteration
Change into your project's directory: cd net-iteration
Install the dependencies: dotnet restore
Open in your editor: code .
Start the test runner: dotnet watch test
Open Iterations.cs and work on functions until tests pass. Once you are done with a test, to move to the next one, remove (Skip = "Remove to run test") from the Fact attribute. There are a total of 10 questions
Commit and push your work to GitHub.
Turn in the URL to your GitHub repo.
Explorer Mode
All tests passing
No linter warnings
Turn in the homework using the URL to your repository on GitHub.
Iteration
Learning programming takes practice and the best practice is repetition. This exercise allows 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 tests pass. Once you are done with a test, to move to the next one, remove(Skip = "Remove to run test")
from theFact
attribute. There are a total of 10 questionsExplorer Mode
Adventure Mode
Additional Resources
Reference the documentation on DevDocs to find what kind of helpful functions might already be in JavaScript.