Skip to content

docs: remove submitting incomplete solutions from README #1245

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 8, 2019
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
2 changes: 0 additions & 2 deletions config/exercise_readme.go.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex

{{ . }}
{{ end }}
## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
254 changes: 0 additions & 254 deletions config/patches/0001-function_to_method.patch

This file was deleted.

26 changes: 0 additions & 26 deletions config/patches/0002-Update-accumulate-readme.md.patch

This file was deleted.

This file was deleted.

6 changes: 6 additions & 0 deletions exercises/accumulate/.meta/hints.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
To be more specific, you are not allowed to use any of the built-in [LINQ methods](https://docs.microsoft.com/en-us/dotnet/api/system.linq.enumerable?view=netcore-2.1#methods).

### 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

## Hints
This exercise requires you to write an extension method. For more information, see [this page](https://msdn.microsoft.com/en-us//library/bb383977.aspx).
18 changes: 8 additions & 10 deletions exercises/accumulate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,21 @@ Your code should be able to produce the collection of squares:

- 1, 4, 9, 16, 25

Check out the test suite to see the expected method signature.
Check out the test suite to see the expected function signature.

## Restrictions

Keep your hands off that select/collect/map/fmap/whatchamacallit functionality
Keep your hands off that collect/map/fmap/whatchamacallit functionality
provided by your standard library!
Solve this one yourself using other basic tools instead.

## Hints
To be more specific, you are not allowed to use any of the built-in [LINQ methods](https://docs.microsoft.com/en-us/dotnet/api/system.linq.enumerable?view=netcore-2.1#methods).

### 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

## Hints
This exercise requires you to write an extension method. For more information, see [this page](https://msdn.microsoft.com/en-us//library/bb383977.aspx).

## Running the tests
Expand All @@ -38,10 +43,6 @@ Once you get the first test passing, remove the `Skip` property from the next te
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

## Further information

For more detailed information about the C# track, including how to get help if
Expand All @@ -51,6 +52,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex

Conversation with James Edward Gray II [https://twitter.com/jeg2](https://twitter.com/jeg2)

## Submitting Incomplete Solutions

It's possible to submit an incomplete solution so you can see how others have completed the exercise.
2 changes: 0 additions & 2 deletions exercises/acronym/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex

Julien Vanier [https://github.com/monkbroc](https://github.com/monkbroc)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
2 changes: 0 additions & 2 deletions exercises/affine-cipher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex

Wikipedia [http://en.wikipedia.org/wiki/Affine_cipher](http://en.wikipedia.org/wiki/Affine_cipher)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
2 changes: 0 additions & 2 deletions exercises/all-your-base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,3 @@ using `exercism submit AllYourBase.cs`
For more detailed information about the C# track, including how to get help if
you're having trouble, please visit the exercism.io [C# language page](http://exercism.io/languages/csharp/resources).

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
2 changes: 0 additions & 2 deletions exercises/allergies/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex

Jumpstart Lab Warm-up [http://jumpstartlab.com](http://jumpstartlab.com)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Loading