Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions config/exercise_readme.go.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit {{ .Spec.MixedCaseName }}.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ diff --git a/exercises/accumulate/README.md b/exercises/accumulate/README.md
index f9679c7..12a25d4 100644
--- a/exercises/accumulate/README.md
+++ b/exercises/accumulate/README.md
@@ -33,6 +33,10 @@ This exercise requires you to write an extension method. For more information, s

To run the tests, run the command `dotnet test` from within the exercise directory.
@@ -33,6 +33,10 @@ Once you get the first test passing, remove the `Skip` from another test and get i
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Accumulate.cs`

+### Laziness test
+
Expand Down
5 changes: 5 additions & 0 deletions exercises/accumulate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ This exercise requires you to write an extension method. For more information, s

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Accumulate.cs`

### Laziness test

Since `accumulate` returns an `IEnumerable`, it's execution is deferred until `ToList()` it is called on it, which is tested with the `Accumulate_is_lazy` method
Expand Down
5 changes: 5 additions & 0 deletions exercises/acronym/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ like Portable Network Graphics to its acronym (PNG).

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Acronym.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/affine-cipher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ harder to guess things based on word boundaries.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit AffineCipher.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/all-your-base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ I think you got the idea!

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit AllYourBase.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/allergies/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ This exercise requires you to use bitwise operations. For more information, see

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Allergies.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/alphametics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ Write a method to solve alphametics puzzles.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Alphametics.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/anagram/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ Given `"listen"` and a list of candidates like `"enlists" "google"

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Anagram.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/armstrong-numbers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ Write some code to determine whether a number is an Armstrong number.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit ArmstrongNumbers.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/atbash-cipher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ things based on word boundaries.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit AtbashCipher.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/bank-account/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ Note though that you then only store the numeric value of a currency.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit BankAccount.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/beer-song/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,11 @@ experiment make the code better? Worse? Did you learn anything from it?

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit BeerSong.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/binary-search-tree/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ And if we then added 1, 5, and 7, it would look like this

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit BinarySearchTree.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/binary-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ A binary search is a dichotomic divide and conquer search algorithm.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit BinarySearch.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/binary/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ So: `101 => 1*2^2 + 0*2^1 + 1*2^0 => 1*4 + 0*2 + 1*1 => 4 + 1 => 5 base 10`.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Binary.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/bob/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ Bob's conversational partner is a purist when it comes to written communication

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Bob.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/book-store/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ And $51.20 is the price with the biggest discount.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit BookStore.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/bowling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ support two operations:

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Bowling.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/bracket-push/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ and nested correctly.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit BracketPush.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/change/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ that the sum of the coins' value would equal the correct amount of change.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Change.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/circular-buffer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ the buffer is once again full.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit CircularBuffer.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/clock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ For more information, see [this page]

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Clock.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/collatz-conjecture/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ Resulting in 9 steps. So for input n = 12, the return value would be 9.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit CollatzConjecture.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/complex-numbers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ Assume the programming language you are using does not have an implementation of

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit ComplexNumbers.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/connect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ won since `O` didn't connect top and bottom.

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Connect.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/crypto-square/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ ciphertext back in to the original message:

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit CryptoSquare.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/custom-set/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ For more information, see [this page](https://docs.microsoft.com/en-us/dotnet/ap

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit CustomSet.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/darts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ Write a function that given a point in the target (defined by its `real` cartesi

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Darts.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/diamond/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ If you would like more information on property-based testing, see [this article]

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit Diamond.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
5 changes: 5 additions & 0 deletions exercises/difference-of-squares/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ For more information, see [this page]

To run the tests, run the command `dotnet test` from within the exercise directory.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit DifferenceOfSquares.cs`

## Further information

For more detailed information about the C# track, including how to get help if
Expand Down
Loading