Skip to content

Commit 6308514

Browse files
ErikSchierboomrobkeim
authored andcommitted
docs: remove submitting incomplete solutions from README (#1245)
1 parent 5ee0e7f commit 6308514

File tree

131 files changed

+36
-586
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+36
-586
lines changed

config/exercise_readme.go.tmpl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex
2222

2323
{{ . }}
2424
{{ end }}
25-
## Submitting Incomplete Solutions
26-
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

config/patches/0001-function_to_method.patch

Lines changed: 0 additions & 254 deletions
This file was deleted.

config/patches/0002-Update-accumulate-readme.md.patch

Lines changed: 0 additions & 26 deletions
This file was deleted.

config/patches/0003-Add-laziness-instructions-accumulate-readme.patch

Lines changed: 0 additions & 15 deletions
This file was deleted.

exercises/accumulate/.meta/hints.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
1+
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).
2+
3+
### Laziness test
4+
5+
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
6+
17
## Hints
28
This exercise requires you to write an extension method. For more information, see [this page](https://msdn.microsoft.com/en-us//library/bb383977.aspx).

exercises/accumulate/README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,21 @@ Your code should be able to produce the collection of squares:
1717

1818
- 1, 4, 9, 16, 25
1919

20-
Check out the test suite to see the expected method signature.
20+
Check out the test suite to see the expected function signature.
2121

2222
## Restrictions
2323

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

28-
## Hints
28+
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).
2929

30+
### Laziness test
31+
32+
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
33+
34+
## Hints
3035
This exercise requires you to write an extension method. For more information, see [this page](https://msdn.microsoft.com/en-us//library/bb383977.aspx).
3136

3237
## Running the tests
@@ -38,10 +43,6 @@ Once you get the first test passing, remove the `Skip` property from the next te
3843
Once none of the tests are skipped and they are all passing, you can submit your solution
3944
using `exercism submit Accumulate.cs`
4045

41-
### Laziness test
42-
43-
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
44-
4546
## Further information
4647

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

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

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

exercises/acronym/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex
2525

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

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

exercises/affine-cipher/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex
8787

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

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

exercises/all-your-base/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,3 @@ using `exercism submit AllYourBase.cs`
4545
For more detailed information about the C# track, including how to get help if
4646
you're having trouble, please visit the exercism.io [C# language page](http://exercism.io/languages/csharp/resources).
4747

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

exercises/allergies/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex
5050

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

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

0 commit comments

Comments
 (0)