diff --git a/config/exercise_readme.go.tmpl b/config/exercise_readme.go.tmpl index 5a9c452200..01b5ee50fd 100644 --- a/config/exercise_readme.go.tmpl +++ b/config/exercise_readme.go.tmpl @@ -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. diff --git a/config/patches/0001-function_to_method.patch b/config/patches/0001-function_to_method.patch deleted file mode 100644 index 4ca9bf5988..0000000000 --- a/config/patches/0001-function_to_method.patch +++ /dev/null @@ -1,254 +0,0 @@ -diff --git a/exercises/accumulate/README.md b/exercises/accumulate/README.md -index 81cf1e4..c9d0cb8 100644 ---- a/exercises/accumulate/README.md -+++ b/exercises/accumulate/README.md -@@ -17,7 +17,7 @@ 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 function signature. -+Check out the test suite to see the expected method signature. - - ## Restrictions - -@@ -25,7 +25,8 @@ 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 -+## 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 -@@ -42,4 +43,5 @@ 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. -diff --git a/exercises/alphametics/README.md b/exercises/alphametics/README.md -index 2dc28f6..e2497b3 100644 ---- a/exercises/alphametics/README.md -+++ b/exercises/alphametics/README.md -@@ -1,6 +1,6 @@ - # Alphametics - --Write a function to solve alphametics puzzles. -+Write a method to solve alphametics puzzles. - - [Alphametics](https://en.wikipedia.org/wiki/Alphametics) is a puzzle where - letters in words are replaced with numbers. -@@ -29,15 +29,15 @@ words, translated into numbers, then make a valid sum. - Each letter must represent a different digit, and the leading digit of - a multi-digit number must not be zero. - --Write a function to solve alphametics puzzles. -+Write a method to solve alphametics puzzles. - - ## Hints -+ - - To parse the text, you could try to use the [Sprache](https://github.com/sprache/Sprache/blob/develop/README.md) library. You can also find a good tutorial [here](https://www.thomaslevesque.com/2017/02/23/easy-text-parsing-in-c-with-sprache/). - - You can solve this exercise with a brute force algorithm, but this will possibly have a poor runtime performance. --Try to find a more sophisticated solution. -+ Try to find a more sophisticated solution. - - Hint: You could try the column-wise addition algorithm that is usually taught in school. - -- - ## Running the tests - - To run the tests, run the command `dotnet test` from within the exercise directory. -@@ -48,4 +48,5 @@ 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. -diff --git a/exercises/flatten-array/README.md b/exercises/flatten-array/README.md -index e8e0b20..c075be1 100644 ---- a/exercises/flatten-array/README.md -+++ b/exercises/flatten-array/README.md -@@ -2,7 +2,7 @@ - - Take a nested list and return a single flattened list with all values except nil/null. - --The challenge is to write a function that accepts an arbitrarily-deep nested list-like structure and returns a flattened structure without any nil/null values. -+The challenge is to write a method that accepts an arbitrarily-deep nested list-like structure and returns a flattened structure without any nil/null values. - - For Example - -@@ -24,4 +24,5 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex - Interview Question [https://reference.wolfram.com/language/ref/Flatten.html](https://reference.wolfram.com/language/ref/Flatten.html) - - ## Submitting Incomplete Solutions -+ - It's possible to submit an incomplete solution so you can see how others have completed the exercise. -diff --git a/exercises/go-counting/README.md b/exercises/go-counting/README.md -index a2b43da..95d6253 100644 ---- a/exercises/go-counting/README.md -+++ b/exercises/go-counting/README.md -@@ -7,16 +7,16 @@ are gained by completely encircling empty intersections with your - stones. The encircled intersections of a player are known as its - territory. - --Write a function that determines the territory of each player. You may -+Write a method that determines the territory of each player. You may - assume that any stones that have been stranded in enemy territory have - already been taken off the board. - --Write a function that determines the territory which includes a specified coordinate. -+Write a method that determines the territory which includes a specified coordinate. - - Multiple empty intersections may be encircled at once and for encircling - only horizontal and vertical neighbours count. In the following diagram - the stones which matter are marked "O" and the stones that don't are --marked "I" (ignored). Empty spaces represent empty intersections. -+marked "I" (ignored). Empty spaces represent empty intersections. - - ```text - +----+ -@@ -45,4 +45,5 @@ 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. -diff --git a/exercises/hello-world/README.md b/exercises/hello-world/README.md -index 7e05640..794cb60 100644 ---- a/exercises/hello-world/README.md -+++ b/exercises/hello-world/README.md -@@ -8,7 +8,7 @@ or environment. - - The objectives are simple: - --- Write a function that returns the string "Hello, World!". -+- Write a method that returns the string "Hello, World!". - - Run the test suite and make sure that it succeeds. - - Submit your solution and check it at the website. - -@@ -25,7 +25,8 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex - - ## Source - --This is an exercise to introduce users to using Exercism [http://en.wikipedia.org/wiki/%22Hello,_world!%22_program](http://en.wikipedia.org/wiki/%22Hello,_world!%22_program) -+This is an exercise to introduce users to using Exercism [http://en.wikipedia.org/wiki/%22Hello,\_world!%22_program](http://en.wikipedia.org/wiki/%22Hello,_world!%22_program) - - ## Submitting Incomplete Solutions -+ - It's possible to submit an incomplete solution so you can see how others have completed the exercise. -diff --git a/exercises/parallel-letter-frequency/README.md b/exercises/parallel-letter-frequency/README.md -index 45ffc25..98821ea 100644 ---- a/exercises/parallel-letter-frequency/README.md -+++ b/exercises/parallel-letter-frequency/README.md -@@ -4,7 +4,7 @@ Count the frequency of letters in texts using parallel computation. - - Parallelism is about doing things in parallel that can also be done - sequentially. A common example is counting the frequency of letters. --Create a function that returns the total frequency of each letter in a -+Create a method that returns the total frequency of each letter in a - list of texts and that employs parallelism. - - ## Running the tests -@@ -17,4 +17,5 @@ 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. -diff --git a/exercises/roman-numerals/README.md b/exercises/roman-numerals/README.md -index ff2ca53..ae048ee 100644 ---- a/exercises/roman-numerals/README.md -+++ b/exercises/roman-numerals/README.md -@@ -1,6 +1,6 @@ - # Roman Numerals - --Write a function to convert from normal numbers to Roman Numerals. -+Write a method to convert from normal numbers to Roman Numerals. - - The Romans were a clever bunch. They conquered most of Europe and ruled - it for hundreds of years. They invented concrete and straight roads and -@@ -43,8 +43,8 @@ In Roman numerals 1990 is MCMXC: - See also: http://www.novaroma.org/via_romana/numbers.html - - ## 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). - -+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 - -@@ -60,4 +60,5 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex - The Roman Numeral Kata [http://codingdojo.org/cgi-bin/index.pl?KataRomanNumerals](http://codingdojo.org/cgi-bin/index.pl?KataRomanNumerals) - - ## Submitting Incomplete Solutions -+ - It's possible to submit an incomplete solution so you can see how others have completed the exercise. -diff --git a/exercises/secret-handshake/README.md b/exercises/secret-handshake/README.md -index c9e721a..bb6a409 100644 ---- a/exercises/secret-handshake/README.md -+++ b/exercises/secret-handshake/README.md -@@ -20,10 +20,10 @@ Given a decimal number, convert it to the appropriate sequence of events for a s - - Here's a couple of examples: - --Given the input 3, the function would return the array -+Given the input 3, the method would return the array - ["wink", "double blink"] because 3 is 11 in binary. - --Given the input 19, the function would return the array -+Given the input 19, the method would return the array - ["double blink", "wink"] because 19 is 10011 in binary. - Notice that the addition of 16 (10000 in binary) - has caused the array to be reversed. -@@ -42,4 +42,5 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex - Bert, in Mary Poppins [http://www.imdb.com/title/tt0058331/quotes/qt0437047](http://www.imdb.com/title/tt0058331/quotes/qt0437047) - - ## Submitting Incomplete Solutions -+ - It's possible to submit an incomplete solution so you can see how others have completed the exercise. -diff --git a/exercises/simple-cipher/README.md b/exercises/simple-cipher/README.md -index 65c9b27..e66502b 100644 ---- a/exercises/simple-cipher/README.md -+++ b/exercises/simple-cipher/README.md -@@ -29,9 +29,9 @@ This image is a great example of the Caesar Cipher: - - For example: - --Giving "iamapandabear" as input to the encode function returns the cipher "ldpdsdqgdehdu". Obscure enough to keep our message secret in transit. -+Giving "iamapandabear" as input to the encode method returns the cipher "ldpdsdqgdehdu". Obscure enough to keep our message secret in transit. - --When "ldpdsdqgdehdu" is put into the decode function it would return -+When "ldpdsdqgdehdu" is put into the decode method it would return - the original "iamapandabear" letting your friend read your original - message. - -@@ -95,4 +95,5 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex - Substitution Cipher at Wikipedia [http://en.wikipedia.org/wiki/Substitution_cipher](http://en.wikipedia.org/wiki/Substitution_cipher) - - ## Submitting Incomplete Solutions -+ - It's possible to submit an incomplete solution so you can see how others have completed the exercise. -diff --git a/exercises/word-search/README.md b/exercises/word-search/README.md -index 2bea144..715df22 100644 ---- a/exercises/word-search/README.md -+++ b/exercises/word-search/README.md -@@ -28,10 +28,10 @@ letter of each word. - - ## HINTS - --One of the uses of Tuples is returning multiple values from a function. In this exercise, write --a function that returns a Tuple (the x- and y- part of a coordinate). -+One of the uses of Tuples is returning multiple values from a function. In this exercise, write -+a method that returns a Tuple (the x- and y- part of a coordinate). - --For more information on Tuples, see [this link](https://msdn.microsoft.com/en-us/library/system.tuple(v=vs.110).aspx). -+For more information on Tuples, see [this link](). - - ## Running the tests - -@@ -43,4 +43,5 @@ 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. diff --git a/config/patches/0002-Update-accumulate-readme.md.patch b/config/patches/0002-Update-accumulate-readme.md.patch deleted file mode 100644 index e90a8b2da4..0000000000 --- a/config/patches/0002-Update-accumulate-readme.md.patch +++ /dev/null @@ -1,26 +0,0 @@ -From fc4782d33ee52cb35dbd472cbac3709363b62123 Mon Sep 17 00:00:00 2001 -From: Christopher Pritchard -Date: Tue, 28 Aug 2018 11:13:51 +1200 -Subject: [PATCH] Update accumulate README.md - -Added select to the list of ops to avoid. A number of my students have solved this just using select, which is called map in other languages ---- - exercises/accumulate/README.md | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/exercises/accumulate/README.md b/exercises/accumulate/README.md -index c9d0cb8..f9679c7 100644 ---- a/exercises/accumulate/README.md -+++ b/exercises/accumulate/README.md -@@ -21,7 +21,7 @@ Check out the test suite to see the expected method signature. - - ## Restrictions - --Keep your hands off that collect/map/fmap/whatchamacallit functionality -+Keep your hands off that select/collect/map/fmap/whatchamacallit functionality - provided by your standard library! - Solve this one yourself using other basic tools instead. - --- -2.15.1.windows.2 - diff --git a/config/patches/0003-Add-laziness-instructions-accumulate-readme.patch b/config/patches/0003-Add-laziness-instructions-accumulate-readme.patch deleted file mode 100644 index 6dc57c17c1..0000000000 --- a/config/patches/0003-Add-laziness-instructions-accumulate-readme.patch +++ /dev/null @@ -1,15 +0,0 @@ -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 @@ 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 -+ -+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 diff --git a/exercises/accumulate/.meta/hints.md b/exercises/accumulate/.meta/hints.md index 25471475ab..202396f76d 100644 --- a/exercises/accumulate/.meta/hints.md +++ b/exercises/accumulate/.meta/hints.md @@ -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). \ No newline at end of file diff --git a/exercises/accumulate/README.md b/exercises/accumulate/README.md index 9eaf2c6fbc..651d5ec53c 100644 --- a/exercises/accumulate/README.md +++ b/exercises/accumulate/README.md @@ -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 @@ -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 @@ -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. diff --git a/exercises/acronym/README.md b/exercises/acronym/README.md index 761c130246..2c6c0373e0 100644 --- a/exercises/acronym/README.md +++ b/exercises/acronym/README.md @@ -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. diff --git a/exercises/affine-cipher/README.md b/exercises/affine-cipher/README.md index 68983f687c..930febf65f 100644 --- a/exercises/affine-cipher/README.md +++ b/exercises/affine-cipher/README.md @@ -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. diff --git a/exercises/all-your-base/README.md b/exercises/all-your-base/README.md index 590091d902..611f5f9c8b 100644 --- a/exercises/all-your-base/README.md +++ b/exercises/all-your-base/README.md @@ -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. diff --git a/exercises/allergies/README.md b/exercises/allergies/README.md index a03de7c98f..5cebf47e9c 100644 --- a/exercises/allergies/README.md +++ b/exercises/allergies/README.md @@ -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. diff --git a/exercises/alphametics/README.md b/exercises/alphametics/README.md index cd434ce6f9..6c639767bd 100644 --- a/exercises/alphametics/README.md +++ b/exercises/alphametics/README.md @@ -1,6 +1,6 @@ # Alphametics -Write a method to solve alphametics puzzles. +Write a function to solve alphametics puzzles. [Alphametics](https://en.wikipedia.org/wiki/Alphametics) is a puzzle where letters in words are replaced with numbers. @@ -29,15 +29,15 @@ words, translated into numbers, then make a valid sum. Each letter must represent a different digit, and the leading digit of a multi-digit number must not be zero. -Write a method to solve alphametics puzzles. +Write a function to solve alphametics puzzles. ## Hints - - To parse the text, you could try to use the [Sprache](https://github.com/sprache/Sprache/blob/develop/README.md) library. You can also find a good tutorial [here](https://www.thomaslevesque.com/2017/02/23/easy-text-parsing-in-c-with-sprache/). - You can solve this exercise with a brute force algorithm, but this will possibly have a poor runtime performance. - Try to find a more sophisticated solution. +Try to find a more sophisticated solution. - Hint: You could try the column-wise addition algorithm that is usually taught in school. + ## Running the tests To run the tests, run the command `dotnet test` from within the exercise directory. @@ -52,6 +52,3 @@ using `exercism submit Alphametics.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. diff --git a/exercises/anagram/README.md b/exercises/anagram/README.md index c17edac041..f2e81dca9b 100644 --- a/exercises/anagram/README.md +++ b/exercises/anagram/README.md @@ -24,5 +24,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Inspired by the Extreme Startup game [https://github.com/rchatley/extreme_startup](https://github.com/rchatley/extreme_startup) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/armstrong-numbers/README.md b/exercises/armstrong-numbers/README.md index c5d0ab6809..1757ab78d9 100644 --- a/exercises/armstrong-numbers/README.md +++ b/exercises/armstrong-numbers/README.md @@ -29,5 +29,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [https://en.wikipedia.org/wiki/Narcissistic_number](https://en.wikipedia.org/wiki/Narcissistic_number) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/atbash-cipher/README.md b/exercises/atbash-cipher/README.md index 4eb73bfd71..be3bed62f7 100644 --- a/exercises/atbash-cipher/README.md +++ b/exercises/atbash-cipher/README.md @@ -46,5 +46,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [http://en.wikipedia.org/wiki/Atbash](http://en.wikipedia.org/wiki/Atbash) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/bank-account/README.md b/exercises/bank-account/README.md index 30ddb717c6..d2ce32166b 100644 --- a/exercises/bank-account/README.md +++ b/exercises/bank-account/README.md @@ -45,5 +45,3 @@ using `exercism submit BankAccount.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. diff --git a/exercises/beer-song/README.md b/exercises/beer-song/README.md index 7f9bfb43c8..dea8739ae6 100644 --- a/exercises/beer-song/README.md +++ b/exercises/beer-song/README.md @@ -341,5 +341,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Learn to Program by Chris Pine [http://pine.fm/LearnToProgram/?Chapter=06](http://pine.fm/LearnToProgram/?Chapter=06) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/binary-search-tree/README.md b/exercises/binary-search-tree/README.md index 801f3f2885..7f2e26d9c7 100644 --- a/exercises/binary-search-tree/README.md +++ b/exercises/binary-search-tree/README.md @@ -71,5 +71,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Josh Cheek [https://twitter.com/josh_cheek](https://twitter.com/josh_cheek) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/binary-search/README.md b/exercises/binary-search/README.md index a0aeb72fe6..b92b8ef57f 100644 --- a/exercises/binary-search/README.md +++ b/exercises/binary-search/README.md @@ -52,5 +52,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [http://en.wikipedia.org/wiki/Binary_search_algorithm](http://en.wikipedia.org/wiki/Binary_search_algorithm) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/binary/README.md b/exercises/binary/README.md index a9a716a6a6..e8df191941 100644 --- a/exercises/binary/README.md +++ b/exercises/binary/README.md @@ -48,5 +48,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex All of Computer Science [http://www.wolframalpha.com/input/?i=binary&a=*C.binary-_*MathWorld-](http://www.wolframalpha.com/input/?i=binary&a=*C.binary-_*MathWorld-) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/bob/README.md b/exercises/bob/README.md index 59e7b2df7e..97b936f40d 100644 --- a/exercises/bob/README.md +++ b/exercises/bob/README.md @@ -33,5 +33,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Inspired by the 'Deaf Grandma' exercise in Chris Pine's Learn to Program tutorial. [http://pine.fm/LearnToProgram/?Chapter=06](http://pine.fm/LearnToProgram/?Chapter=06) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/book-store/README.md b/exercises/book-store/README.md index 0bfaf43585..add9d258b4 100644 --- a/exercises/book-store/README.md +++ b/exercises/book-store/README.md @@ -85,5 +85,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Inspired by the harry potter kata from Cyber-Dojo. [http://cyber-dojo.org](http://cyber-dojo.org) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/bowling/README.md b/exercises/bowling/README.md index 020d2b0da5..e1c2688d7f 100644 --- a/exercises/bowling/README.md +++ b/exercises/bowling/README.md @@ -78,5 +78,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex The Bowling Game Kata at but UncleBob [http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata](http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/bracket-push/README.md b/exercises/bracket-push/README.md index 1e069889e8..700de4d460 100644 --- a/exercises/bracket-push/README.md +++ b/exercises/bracket-push/README.md @@ -22,5 +22,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Ginna Baker -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/change/README.md b/exercises/change/README.md index 9513935608..a327f74184 100644 --- a/exercises/change/README.md +++ b/exercises/change/README.md @@ -34,5 +34,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Software Craftsmanship - Coin Change Kata [https://web.archive.org/web/20130115115225/http://craftsmanship.sv.cmu.edu:80/exercises/coin-change-kata](https://web.archive.org/web/20130115115225/http://craftsmanship.sv.cmu.edu:80/exercises/coin-change-kata) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/circular-buffer/README.md b/exercises/circular-buffer/README.md index cbbf1e49df..d426ca82c4 100644 --- a/exercises/circular-buffer/README.md +++ b/exercises/circular-buffer/README.md @@ -68,5 +68,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [http://en.wikipedia.org/wiki/Circular_buffer](http://en.wikipedia.org/wiki/Circular_buffer) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/clock/README.md b/exercises/clock/README.md index 1d75b53b92..8f7b71c4a4 100644 --- a/exercises/clock/README.md +++ b/exercises/clock/README.md @@ -29,5 +29,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Pairing session with Erin Drummond [https://twitter.com/ebdrummond](https://twitter.com/ebdrummond) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/collatz-conjecture/README.md b/exercises/collatz-conjecture/README.md index 83bc135497..812ca3c3cc 100644 --- a/exercises/collatz-conjecture/README.md +++ b/exercises/collatz-conjecture/README.md @@ -44,5 +44,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex An unsolved problem in mathematics named after mathematician Lothar Collatz [https://en.wikipedia.org/wiki/3x_%2B_1_problem](https://en.wikipedia.org/wiki/3x_%2B_1_problem) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/complex-numbers/README.md b/exercises/complex-numbers/README.md index 0410f4f90d..b9c30d360e 100644 --- a/exercises/complex-numbers/README.md +++ b/exercises/complex-numbers/README.md @@ -46,5 +46,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [https://en.wikipedia.org/wiki/Complex_number](https://en.wikipedia.org/wiki/Complex_number) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/connect/README.md b/exercises/connect/README.md index 3663b4a813..8d8b8fb7ca 100644 --- a/exercises/connect/README.md +++ b/exercises/connect/README.md @@ -44,5 +44,3 @@ using `exercism submit Connect.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. diff --git a/exercises/crypto-square/README.md b/exercises/crypto-square/README.md index e2d66a8f30..c3c4655e29 100644 --- a/exercises/crypto-square/README.md +++ b/exercises/crypto-square/README.md @@ -90,5 +90,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex J Dalbey's Programming Practice problems [http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html](http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/custom-set/README.md b/exercises/custom-set/README.md index 816f5443d0..681e352ed4 100644 --- a/exercises/custom-set/README.md +++ b/exercises/custom-set/README.md @@ -27,5 +27,3 @@ using `exercism submit CustomSet.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. diff --git a/exercises/darts/README.md b/exercises/darts/README.md index fbeab9cdfa..90d824799c 100644 --- a/exercises/darts/README.md +++ b/exercises/darts/README.md @@ -33,5 +33,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Inspired by an excersie created by a professor Della Paolera in Argentina -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/diamond/README.md b/exercises/diamond/README.md index b2e093c618..073dad4c8c 100644 --- a/exercises/diamond/README.md +++ b/exercises/diamond/README.md @@ -82,5 +82,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Seb Rose [http://claysnow.co.uk/recycling-tests-in-tdd/](http://claysnow.co.uk/recycling-tests-in-tdd/) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/difference-of-squares/README.md b/exercises/difference-of-squares/README.md index 5bd9c0480b..5960ff37ad 100644 --- a/exercises/difference-of-squares/README.md +++ b/exercises/difference-of-squares/README.md @@ -39,5 +39,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Problem 6 at Project Euler [http://projecteuler.net/problem=6](http://projecteuler.net/problem=6) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/diffie-hellman/README.md b/exercises/diffie-hellman/README.md index 480a0e0bd0..8d252cb641 100644 --- a/exercises/diffie-hellman/README.md +++ b/exercises/diffie-hellman/README.md @@ -60,5 +60,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia, 1024 bit key from www.cryptopp.com/wiki. [http://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange](http://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/dnd-character/README.md b/exercises/dnd-character/README.md index 7fab07aebc..7d611dfd58 100644 --- a/exercises/dnd-character/README.md +++ b/exercises/dnd-character/README.md @@ -50,5 +50,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Simon Shine, Erik Schierboom [https://github.com/exercism/problem-specifications/issues/616#issuecomment-437358945](https://github.com/exercism/problem-specifications/issues/616#issuecomment-437358945) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/dominoes/README.md b/exercises/dominoes/README.md index d2260701ea..decd61df64 100644 --- a/exercises/dominoes/README.md +++ b/exercises/dominoes/README.md @@ -28,5 +28,3 @@ using `exercism submit Dominoes.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. diff --git a/exercises/dot-dsl/README.md b/exercises/dot-dsl/README.md index 310dcd2f54..8cfbcfcc2d 100644 --- a/exercises/dot-dsl/README.md +++ b/exercises/dot-dsl/README.md @@ -40,5 +40,3 @@ using `exercism submit DotDsl.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. diff --git a/exercises/error-handling/README.md b/exercises/error-handling/README.md index d46fba62e5..ca73ff26c2 100644 --- a/exercises/error-handling/README.md +++ b/exercises/error-handling/README.md @@ -23,5 +23,3 @@ using `exercism submit ErrorHandling.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. diff --git a/exercises/etl/README.md b/exercises/etl/README.md index 285d1ddfb9..b4bf39b3bc 100644 --- a/exercises/etl/README.md +++ b/exercises/etl/README.md @@ -64,5 +64,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex The Jumpstart Lab team [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. diff --git a/exercises/flatten-array/README.md b/exercises/flatten-array/README.md index 3cc0e94b03..695621973a 100644 --- a/exercises/flatten-array/README.md +++ b/exercises/flatten-array/README.md @@ -2,7 +2,7 @@ Take a nested list and return a single flattened list with all values except nil/null. -The challenge is to write a method that accepts an arbitrarily-deep nested list-like structure and returns a flattened structure without any nil/null values. +The challenge is to write a function that accepts an arbitrarily-deep nested list-like structure and returns a flattened structure without any nil/null values. For Example @@ -28,6 +28,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Interview Question [https://reference.wolfram.com/language/ref/Flatten.html](https://reference.wolfram.com/language/ref/Flatten.html) -## Submitting Incomplete Solutions - -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/food-chain/README.md b/exercises/food-chain/README.md index 144b9b6089..513d5fe8c3 100644 --- a/exercises/food-chain/README.md +++ b/exercises/food-chain/README.md @@ -85,5 +85,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [http://en.wikipedia.org/wiki/There_Was_an_Old_Lady_Who_Swallowed_a_Fly](http://en.wikipedia.org/wiki/There_Was_an_Old_Lady_Who_Swallowed_a_Fly) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/forth/README.md b/exercises/forth/README.md index a03c2d5f06..13013c39db 100644 --- a/exercises/forth/README.md +++ b/exercises/forth/README.md @@ -43,5 +43,3 @@ using `exercism submit Forth.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. diff --git a/exercises/gigasecond/README.md b/exercises/gigasecond/README.md index ededa53818..903d8bd92b 100644 --- a/exercises/gigasecond/README.md +++ b/exercises/gigasecond/README.md @@ -23,5 +23,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Chapter 9 in Chris Pine's online Learn to Program tutorial. [http://pine.fm/LearnToProgram/?Chapter=09](http://pine.fm/LearnToProgram/?Chapter=09) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/go-counting/README.md b/exercises/go-counting/README.md index 7aca280055..afb4e84bcf 100644 --- a/exercises/go-counting/README.md +++ b/exercises/go-counting/README.md @@ -7,16 +7,16 @@ are gained by completely encircling empty intersections with your stones. The encircled intersections of a player are known as its territory. -Write a method that determines the territory of each player. You may +Write a function that determines the territory of each player. You may assume that any stones that have been stranded in enemy territory have already been taken off the board. -Write a method that determines the territory which includes a specified coordinate. +Write a function that determines the territory which includes a specified coordinate. Multiple empty intersections may be encircled at once and for encircling only horizontal and vertical neighbours count. In the following diagram the stones which matter are marked "O" and the stones that don't are -marked "I" (ignored). Empty spaces represent empty intersections. +marked "I" (ignored). Empty spaces represent empty intersections. ```text +----+ @@ -49,6 +49,3 @@ using `exercism submit GoCounting.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. diff --git a/exercises/grade-school/README.md b/exercises/grade-school/README.md index 4e6a5509d9..ca87ea6539 100644 --- a/exercises/grade-school/README.md +++ b/exercises/grade-school/README.md @@ -52,5 +52,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex A pairing session with Phil Battos at gSchool [http://gschool.it](http://gschool.it) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/grains/README.md b/exercises/grains/README.md index 1399389831..8fe75d5030 100644 --- a/exercises/grains/README.md +++ b/exercises/grains/README.md @@ -44,5 +44,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex JavaRanch Cattle Drive, exercise 6 [http://www.javaranch.com/grains.jsp](http://www.javaranch.com/grains.jsp) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/grep/README.md b/exercises/grep/README.md index 9d0bedf885..ca25cbd16a 100644 --- a/exercises/grep/README.md +++ b/exercises/grep/README.md @@ -82,5 +82,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Conversation with Nate Foster. [http://www.cs.cornell.edu/Courses/cs3110/2014sp/hw/0/ps0.pdf](http://www.cs.cornell.edu/Courses/cs3110/2014sp/hw/0/ps0.pdf) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/hamming/README.md b/exercises/hamming/README.md index b2b52f7210..ba54a0a3b4 100644 --- a/exercises/hamming/README.md +++ b/exercises/hamming/README.md @@ -41,5 +41,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex The Calculating Point Mutations problem at Rosalind [http://rosalind.info/problems/hamm/](http://rosalind.info/problems/hamm/) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/hangman/README.md b/exercises/hangman/README.md index de1b6e7763..6aa713b886 100644 --- a/exercises/hangman/README.md +++ b/exercises/hangman/README.md @@ -41,5 +41,3 @@ using `exercism submit Hangman.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. diff --git a/exercises/hello-world/README.md b/exercises/hello-world/README.md index 96d59391a8..bbe72e4473 100644 --- a/exercises/hello-world/README.md +++ b/exercises/hello-world/README.md @@ -8,7 +8,7 @@ or environment. The objectives are simple: -- Write a method that returns the string "Hello, World!". +- Write a function that returns the string "Hello, World!". - Run the test suite and make sure that it succeeds. - Submit your solution and check it at the website. @@ -30,8 +30,5 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex ## Source -This is an exercise to introduce users to using Exercism [http://en.wikipedia.org/wiki/%22Hello,\_world!%22_program](http://en.wikipedia.org/wiki/%22Hello,_world!%22_program) +This is an exercise to introduce users to using Exercism [http://en.wikipedia.org/wiki/%22Hello,_world!%22_program](http://en.wikipedia.org/wiki/%22Hello,_world!%22_program) -## Submitting Incomplete Solutions - -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/hexadecimal/README.md b/exercises/hexadecimal/README.md index 1df9d2105a..a4f0a5b919 100644 --- a/exercises/hexadecimal/README.md +++ b/exercises/hexadecimal/README.md @@ -25,5 +25,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex All of Computer Science [http://www.wolframalpha.com/examples/NumberBases.html](http://www.wolframalpha.com/examples/NumberBases.html) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/high-scores/README.md b/exercises/high-scores/README.md index fa6170ec92..a1bba54e74 100644 --- a/exercises/high-scores/README.md +++ b/exercises/high-scores/README.md @@ -22,5 +22,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Tribute to the eighties' arcade game Frogger -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/house/README.md b/exercises/house/README.md index 8a74366f77..e05a5e1fce 100644 --- a/exercises/house/README.md +++ b/exercises/house/README.md @@ -127,5 +127,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex British nursery rhyme [http://en.wikipedia.org/wiki/This_Is_The_House_That_Jack_Built](http://en.wikipedia.org/wiki/This_Is_The_House_That_Jack_Built) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/isbn-verifier/README.md b/exercises/isbn-verifier/README.md index d26d2527c8..7c74745682 100644 --- a/exercises/isbn-verifier/README.md +++ b/exercises/isbn-verifier/README.md @@ -58,5 +58,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Converting a string into a number and some basic processing utilizing a relatable real world example. [https://en.wikipedia.org/wiki/International_Standard_Book_Number#ISBN-10_check_digit_calculation](https://en.wikipedia.org/wiki/International_Standard_Book_Number#ISBN-10_check_digit_calculation) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/isogram/README.md b/exercises/isogram/README.md index 4156a915fb..6a92972a17 100644 --- a/exercises/isogram/README.md +++ b/exercises/isogram/README.md @@ -31,5 +31,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [https://en.wikipedia.org/wiki/Isogram](https://en.wikipedia.org/wiki/Isogram) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/kindergarten-garden/README.md b/exercises/kindergarten-garden/README.md index 30004c5a6e..b250df24f0 100644 --- a/exercises/kindergarten-garden/README.md +++ b/exercises/kindergarten-garden/README.md @@ -77,5 +77,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Random musings during airplane trip. [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. diff --git a/exercises/largest-series-product/README.md b/exercises/largest-series-product/README.md index 3fff1d9bb7..885a5858d6 100644 --- a/exercises/largest-series-product/README.md +++ b/exercises/largest-series-product/README.md @@ -31,5 +31,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex A variation on Problem 8 at Project Euler [http://projecteuler.net/problem=8](http://projecteuler.net/problem=8) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/leap/README.md b/exercises/leap/README.md index 57fe40f45f..f8b67c56af 100644 --- a/exercises/leap/README.md +++ b/exercises/leap/README.md @@ -46,5 +46,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex JavaRanch Cattle Drive, exercise 3 [http://www.javaranch.com/leap.jsp](http://www.javaranch.com/leap.jsp) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/ledger/README.md b/exercises/ledger/README.md index 21b00782ed..a0fd017b20 100644 --- a/exercises/ledger/README.md +++ b/exercises/ledger/README.md @@ -28,5 +28,3 @@ using `exercism submit Ledger.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. diff --git a/exercises/linked-list/README.md b/exercises/linked-list/README.md index 908286d4e8..74ec31e507 100644 --- a/exercises/linked-list/README.md +++ b/exercises/linked-list/README.md @@ -45,5 +45,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Classic computer science topic -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/list-ops/README.md b/exercises/list-ops/README.md index ceb4739776..b6ed981a7d 100644 --- a/exercises/list-ops/README.md +++ b/exercises/list-ops/README.md @@ -36,5 +36,3 @@ using `exercism submit ListOps.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. diff --git a/exercises/luhn/README.md b/exercises/luhn/README.md index 484ee3f1fa..90f24db72e 100644 --- a/exercises/luhn/README.md +++ b/exercises/luhn/README.md @@ -82,5 +82,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex The Luhn Algorithm on Wikipedia [http://en.wikipedia.org/wiki/Luhn_algorithm](http://en.wikipedia.org/wiki/Luhn_algorithm) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/markdown/README.md b/exercises/markdown/README.md index 8d8bed562a..7069831701 100644 --- a/exercises/markdown/README.md +++ b/exercises/markdown/README.md @@ -32,5 +32,3 @@ using `exercism submit Markdown.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. diff --git a/exercises/matrix/README.md b/exercises/matrix/README.md index ffd7bc2bbd..0a627abf54 100644 --- a/exercises/matrix/README.md +++ b/exercises/matrix/README.md @@ -58,5 +58,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Warmup to the `saddle-points` warmup. [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. diff --git a/exercises/meetup/README.md b/exercises/meetup/README.md index 3edc177a49..33ef3c6289 100644 --- a/exercises/meetup/README.md +++ b/exercises/meetup/README.md @@ -44,5 +44,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Jeremy Hinegardner mentioned a Boulder meetup that happens on the Wednesteenth of every month [https://twitter.com/copiousfreetime](https://twitter.com/copiousfreetime) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/minesweeper/README.md b/exercises/minesweeper/README.md index 50f2b58897..7064697190 100644 --- a/exercises/minesweeper/README.md +++ b/exercises/minesweeper/README.md @@ -40,5 +40,3 @@ using `exercism submit Minesweeper.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. diff --git a/exercises/nth-prime/README.md b/exercises/nth-prime/README.md index 28360b6c50..f75ba565ed 100644 --- a/exercises/nth-prime/README.md +++ b/exercises/nth-prime/README.md @@ -34,5 +34,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex A variation on Problem 7 at Project Euler [http://projecteuler.net/problem=7](http://projecteuler.net/problem=7) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/nucleotide-count/README.md b/exercises/nucleotide-count/README.md index 6b54a258e1..e38cb1f9a3 100644 --- a/exercises/nucleotide-count/README.md +++ b/exercises/nucleotide-count/README.md @@ -34,5 +34,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex The Calculating DNA Nucleotides_problem at Rosalind [http://rosalind.info/problems/dna/](http://rosalind.info/problems/dna/) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/ocr-numbers/README.md b/exercises/ocr-numbers/README.md index 2ed8c2faa5..2d2bfc10dd 100644 --- a/exercises/ocr-numbers/README.md +++ b/exercises/ocr-numbers/README.md @@ -96,5 +96,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Inspired by the Bank OCR kata [http://codingdojo.org/cgi-bin/wiki.pl?KataBankOCR](http://codingdojo.org/cgi-bin/wiki.pl?KataBankOCR) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/octal/README.md b/exercises/octal/README.md index 641eb77d69..1b486690bb 100644 --- a/exercises/octal/README.md +++ b/exercises/octal/README.md @@ -64,5 +64,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex All of Computer Science [http://www.wolframalpha.com/input/?i=base+8](http://www.wolframalpha.com/input/?i=base+8) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/palindrome-products/README.md b/exercises/palindrome-products/README.md index 9e381cc304..0d2a05ca98 100644 --- a/exercises/palindrome-products/README.md +++ b/exercises/palindrome-products/README.md @@ -55,5 +55,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Problem 4 at Project Euler [http://projecteuler.net/problem=4](http://projecteuler.net/problem=4) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/pangram/README.md b/exercises/pangram/README.md index a2094e244e..b8a2407d91 100644 --- a/exercises/pangram/README.md +++ b/exercises/pangram/README.md @@ -26,5 +26,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [https://en.wikipedia.org/wiki/Pangram](https://en.wikipedia.org/wiki/Pangram) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/parallel-letter-frequency/README.md b/exercises/parallel-letter-frequency/README.md index 8e227f4fb1..c897bb2688 100644 --- a/exercises/parallel-letter-frequency/README.md +++ b/exercises/parallel-letter-frequency/README.md @@ -4,7 +4,7 @@ Count the frequency of letters in texts using parallel computation. Parallelism is about doing things in parallel that can also be done sequentially. A common example is counting the frequency of letters. -Create a method that returns the total frequency of each letter in a +Create a function that returns the total frequency of each letter in a list of texts and that employs parallelism. ## Running the tests @@ -21,6 +21,3 @@ using `exercism submit ParallelLetterFrequency.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. diff --git a/exercises/pascals-triangle/README.md b/exercises/pascals-triangle/README.md index 99b24855d4..702a27a8c9 100644 --- a/exercises/pascals-triangle/README.md +++ b/exercises/pascals-triangle/README.md @@ -32,5 +32,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Pascal's Triangle at Wolfram Math World [http://mathworld.wolfram.com/PascalsTriangle.html](http://mathworld.wolfram.com/PascalsTriangle.html) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/perfect-numbers/README.md b/exercises/perfect-numbers/README.md index d58cc240dd..1b86377e1a 100644 --- a/exercises/perfect-numbers/README.md +++ b/exercises/perfect-numbers/README.md @@ -35,5 +35,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Taken from Chapter 2 of Functional Thinking by Neal Ford. [http://shop.oreilly.com/product/0636920029687.do](http://shop.oreilly.com/product/0636920029687.do) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/phone-number/README.md b/exercises/phone-number/README.md index caabbf4d22..4abd0101f9 100644 --- a/exercises/phone-number/README.md +++ b/exercises/phone-number/README.md @@ -46,5 +46,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Event Manager by JumpstartLab [http://tutorials.jumpstartlab.com/projects/eventmanager.html](http://tutorials.jumpstartlab.com/projects/eventmanager.html) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/pig-latin/README.md b/exercises/pig-latin/README.md index f500bf96f7..4fbf06d673 100644 --- a/exercises/pig-latin/README.md +++ b/exercises/pig-latin/README.md @@ -35,5 +35,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex The Pig Latin exercise at Test First Teaching by Ultrasaurus [https://github.com/ultrasaurus/test-first-teaching/blob/master/learn_ruby/pig_latin/](https://github.com/ultrasaurus/test-first-teaching/blob/master/learn_ruby/pig_latin/) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/poker/README.md b/exercises/poker/README.md index c492e58a86..d282aabdf8 100644 --- a/exercises/poker/README.md +++ b/exercises/poker/README.md @@ -23,5 +23,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Inspired by the training course from Udacity. [https://www.udacity.com/course/viewer#!/c-cs212/](https://www.udacity.com/course/viewer#!/c-cs212/) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/pov/README.md b/exercises/pov/README.md index a1ba2faeb3..654706f317 100644 --- a/exercises/pov/README.md +++ b/exercises/pov/README.md @@ -55,5 +55,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Adaptation of exercise from 4clojure [https://www.4clojure.com/](https://www.4clojure.com/) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/prime-factors/README.md b/exercises/prime-factors/README.md index d0f0003596..acf70d2f78 100644 --- a/exercises/prime-factors/README.md +++ b/exercises/prime-factors/README.md @@ -47,5 +47,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex The Prime Factors Kata by Uncle Bob [http://butunclebob.com/ArticleS.UncleBob.ThePrimeFactorsKata](http://butunclebob.com/ArticleS.UncleBob.ThePrimeFactorsKata) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/protein-translation/README.md b/exercises/protein-translation/README.md index 4b2be16e8f..f771b2e745 100644 --- a/exercises/protein-translation/README.md +++ b/exercises/protein-translation/README.md @@ -59,5 +59,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Tyler Long -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/proverb/README.md b/exercises/proverb/README.md index 67fa7af67c..9ebbcec05c 100644 --- a/exercises/proverb/README.md +++ b/exercises/proverb/README.md @@ -38,5 +38,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [http://en.wikipedia.org/wiki/For_Want_of_a_Nail](http://en.wikipedia.org/wiki/For_Want_of_a_Nail) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/pythagorean-triplet/README.md b/exercises/pythagorean-triplet/README.md index 0554fa16dc..646f0a2740 100644 --- a/exercises/pythagorean-triplet/README.md +++ b/exercises/pythagorean-triplet/README.md @@ -41,5 +41,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Problem 9 at Project Euler [http://projecteuler.net/problem=9](http://projecteuler.net/problem=9) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/queen-attack/README.md b/exercises/queen-attack/README.md index d004dcc643..65c4d86d02 100644 --- a/exercises/queen-attack/README.md +++ b/exercises/queen-attack/README.md @@ -44,5 +44,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex J Dalbey's Programming Practice problems [http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html](http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/rail-fence-cipher/README.md b/exercises/rail-fence-cipher/README.md index a581fe56a6..a8ab713d89 100644 --- a/exercises/rail-fence-cipher/README.md +++ b/exercises/rail-fence-cipher/README.md @@ -76,5 +76,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [https://en.wikipedia.org/wiki/Transposition_cipher#Rail_Fence_cipher](https://en.wikipedia.org/wiki/Transposition_cipher#Rail_Fence_cipher) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/raindrops/README.md b/exercises/raindrops/README.md index 069ad9459a..ea7b243d3e 100644 --- a/exercises/raindrops/README.md +++ b/exercises/raindrops/README.md @@ -35,5 +35,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex A variation on a famous interview question intended to weed out potential candidates. [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. diff --git a/exercises/rational-numbers/README.md b/exercises/rational-numbers/README.md index 11acbe1a86..fb3648c9d1 100644 --- a/exercises/rational-numbers/README.md +++ b/exercises/rational-numbers/README.md @@ -53,5 +53,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [https://en.wikipedia.org/wiki/Rational_number](https://en.wikipedia.org/wiki/Rational_number) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/react/README.md b/exercises/react/README.md index 2684731e1d..975233efb2 100644 --- a/exercises/react/README.md +++ b/exercises/react/README.md @@ -33,5 +33,3 @@ using `exercism submit React.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. diff --git a/exercises/rectangles/README.md b/exercises/rectangles/README.md index 3398c7f054..68af0728b0 100644 --- a/exercises/rectangles/README.md +++ b/exercises/rectangles/README.md @@ -77,5 +77,3 @@ using `exercism submit Rectangles.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. diff --git a/exercises/resistor-color/README.md b/exercises/resistor-color/README.md index 685aa028e7..b9ed7752f1 100644 --- a/exercises/resistor-color/README.md +++ b/exercises/resistor-color/README.md @@ -37,5 +37,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Maud de Vries, Erik Schierboom [https://github.com/exercism/problem-specifications/issues/1458](https://github.com/exercism/problem-specifications/issues/1458) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/rest-api/README.md b/exercises/rest-api/README.md index c30fe5eb21..10868b1de3 100644 --- a/exercises/rest-api/README.md +++ b/exercises/rest-api/README.md @@ -52,5 +52,3 @@ using `exercism submit RestApi.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. diff --git a/exercises/reverse-string/README.md b/exercises/reverse-string/README.md index c2ec57ce52..36e5c4bdbf 100644 --- a/exercises/reverse-string/README.md +++ b/exercises/reverse-string/README.md @@ -24,5 +24,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Introductory challenge to reverse an input string [https://medium.freecodecamp.org/how-to-reverse-a-string-in-javascript-in-3-different-ways-75e4763c68cb](https://medium.freecodecamp.org/how-to-reverse-a-string-in-javascript-in-3-different-ways-75e4763c68cb) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/rna-transcription/README.md b/exercises/rna-transcription/README.md index 2cc5609c61..14869cb189 100644 --- a/exercises/rna-transcription/README.md +++ b/exercises/rna-transcription/README.md @@ -36,5 +36,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Hyperphysics [http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html](http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/robot-name/README.md b/exercises/robot-name/README.md index b3cd2efd5f..bc528a3c54 100644 --- a/exercises/robot-name/README.md +++ b/exercises/robot-name/README.md @@ -33,5 +33,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex A debugging session with Paul Blackwell at gSchool. [http://gschool.it](http://gschool.it) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/robot-simulator/README.md b/exercises/robot-simulator/README.md index 73a2fe69a7..64caa66eb1 100644 --- a/exercises/robot-simulator/README.md +++ b/exercises/robot-simulator/README.md @@ -45,5 +45,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Inspired by an interview question at a famous company. -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/roman-numerals/README.md b/exercises/roman-numerals/README.md index fe7898d528..dbfe371f8a 100644 --- a/exercises/roman-numerals/README.md +++ b/exercises/roman-numerals/README.md @@ -1,6 +1,6 @@ # Roman Numerals -Write a method to convert from normal numbers to Roman Numerals. +Write a function to convert from normal numbers to Roman Numerals. The Romans were a clever bunch. They conquered most of Europe and ruled it for hundreds of years. They invented concrete and straight roads and @@ -43,9 +43,9 @@ In Roman numerals 1990 is MCMXC: See also: http://www.novaroma.org/via_romana/numbers.html ## 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 To run the tests, run the command `dotnet test` from within the exercise directory. @@ -64,6 +64,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex The Roman Numeral Kata [http://codingdojo.org/cgi-bin/index.pl?KataRomanNumerals](http://codingdojo.org/cgi-bin/index.pl?KataRomanNumerals) -## Submitting Incomplete Solutions - -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/rotational-cipher/README.md b/exercises/rotational-cipher/README.md index cc594b494b..63b4178a17 100644 --- a/exercises/rotational-cipher/README.md +++ b/exercises/rotational-cipher/README.md @@ -48,5 +48,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [https://en.wikipedia.org/wiki/Caesar_cipher](https://en.wikipedia.org/wiki/Caesar_cipher) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/run-length-encoding/README.md b/exercises/run-length-encoding/README.md index b919f30c79..ff206307f2 100644 --- a/exercises/run-length-encoding/README.md +++ b/exercises/run-length-encoding/README.md @@ -41,5 +41,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [https://en.wikipedia.org/wiki/Run-length_encoding](https://en.wikipedia.org/wiki/Run-length_encoding) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/saddle-points/README.md b/exercises/saddle-points/README.md index 1537b02e0c..bfbc92d623 100644 --- a/exercises/saddle-points/README.md +++ b/exercises/saddle-points/README.md @@ -51,5 +51,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex J Dalbey's Programming Practice problems [http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html](http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/say/README.md b/exercises/say/README.md index 6fd14dc5df..2c57a9eef2 100644 --- a/exercises/say/README.md +++ b/exercises/say/README.md @@ -80,5 +80,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex A variation on JavaRanch CattleDrive, exercise 4a [http://www.javaranch.com/say.jsp](http://www.javaranch.com/say.jsp) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/scale-generator/README.md b/exercises/scale-generator/README.md index 39a43f2424..73d9e768ee 100644 --- a/exercises/scale-generator/README.md +++ b/exercises/scale-generator/README.md @@ -62,5 +62,3 @@ using `exercism submit ScaleGenerator.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. diff --git a/exercises/scrabble-score/README.md b/exercises/scrabble-score/README.md index 3d081bfe83..ac57a89e5c 100644 --- a/exercises/scrabble-score/README.md +++ b/exercises/scrabble-score/README.md @@ -57,5 +57,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Inspired by the Extreme Startup game [https://github.com/rchatley/extreme_startup](https://github.com/rchatley/extreme_startup) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/secret-handshake/README.md b/exercises/secret-handshake/README.md index f79140f904..d20f814f1a 100644 --- a/exercises/secret-handshake/README.md +++ b/exercises/secret-handshake/README.md @@ -20,10 +20,10 @@ Given a decimal number, convert it to the appropriate sequence of events for a s Here's a couple of examples: -Given the input 3, the method would return the array +Given the input 3, the function would return the array ["wink", "double blink"] because 3 is 11 in binary. -Given the input 19, the method would return the array +Given the input 19, the function would return the array ["double blink", "wink"] because 19 is 10011 in binary. Notice that the addition of 16 (10000 in binary) has caused the array to be reversed. @@ -46,6 +46,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Bert, in Mary Poppins [http://www.imdb.com/title/tt0058331/quotes/qt0437047](http://www.imdb.com/title/tt0058331/quotes/qt0437047) -## Submitting Incomplete Solutions - -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/series/README.md b/exercises/series/README.md index c665b7d192..7ca23225fb 100644 --- a/exercises/series/README.md +++ b/exercises/series/README.md @@ -38,5 +38,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex A subset of the Problem 8 at Project Euler [http://projecteuler.net/problem=8](http://projecteuler.net/problem=8) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/sgf-parsing/README.md b/exercises/sgf-parsing/README.md index 2bd92eeb87..c56f26b852 100644 --- a/exercises/sgf-parsing/README.md +++ b/exercises/sgf-parsing/README.md @@ -83,5 +83,3 @@ using `exercism submit SgfParsing.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. diff --git a/exercises/sieve/README.md b/exercises/sieve/README.md index 043e91880e..54fcf932db 100644 --- a/exercises/sieve/README.md +++ b/exercises/sieve/README.md @@ -47,5 +47,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Sieve of Eratosthenes at Wikipedia [http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes](http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/simple-cipher/README.md b/exercises/simple-cipher/README.md index 6fb5c2db00..cd37135aec 100644 --- a/exercises/simple-cipher/README.md +++ b/exercises/simple-cipher/README.md @@ -29,9 +29,9 @@ This image is a great example of the Caesar Cipher: For example: -Giving "iamapandabear" as input to the encode method returns the cipher "ldpdsdqgdehdu". Obscure enough to keep our message secret in transit. +Giving "iamapandabear" as input to the encode function returns the cipher "ldpdsdqgdehdu". Obscure enough to keep our message secret in transit. -When "ldpdsdqgdehdu" is put into the decode method it would return +When "ldpdsdqgdehdu" is put into the decode function it would return the original "iamapandabear" letting your friend read your original message. @@ -96,6 +96,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Substitution Cipher at Wikipedia [http://en.wikipedia.org/wiki/Substitution_cipher](http://en.wikipedia.org/wiki/Substitution_cipher) -## Submitting Incomplete Solutions - -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/simple-linked-list/README.md b/exercises/simple-linked-list/README.md index 7c793822ad..ab4aac36a0 100644 --- a/exercises/simple-linked-list/README.md +++ b/exercises/simple-linked-list/README.md @@ -43,5 +43,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Inspired by 'Data Structures and Algorithms with Object-Oriented Design Patterns in Ruby', singly linked-lists. [http://www.brpreiss.com/books/opus8/html/page96.html#SECTION004300000000000000000](http://www.brpreiss.com/books/opus8/html/page96.html#SECTION004300000000000000000) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/space-age/README.md b/exercises/space-age/README.md index 759a404673..cbc8b5cbe1 100644 --- a/exercises/space-age/README.md +++ b/exercises/space-age/README.md @@ -35,5 +35,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Partially inspired by Chapter 1 in Chris Pine's online Learn to Program tutorial. [http://pine.fm/LearnToProgram/?Chapter=01](http://pine.fm/LearnToProgram/?Chapter=01) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/spiral-matrix/README.md b/exercises/spiral-matrix/README.md index e4863d309a..534fe6e103 100644 --- a/exercises/spiral-matrix/README.md +++ b/exercises/spiral-matrix/README.md @@ -41,5 +41,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Reddit r/dailyprogrammer challenge #320 [Easy] Spiral Ascension. [https://www.reddit.com/r/dailyprogrammer/comments/6i60lr/20170619_challenge_320_easy_spiral_ascension/](https://www.reddit.com/r/dailyprogrammer/comments/6i60lr/20170619_challenge_320_easy_spiral_ascension/) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/strain/README.md b/exercises/strain/README.md index 8da1f59eae..c3eb4f17f1 100644 --- a/exercises/strain/README.md +++ b/exercises/strain/README.md @@ -51,5 +51,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. diff --git a/exercises/sublist/README.md b/exercises/sublist/README.md index 3501bfe021..66915537a8 100644 --- a/exercises/sublist/README.md +++ b/exercises/sublist/README.md @@ -36,5 +36,3 @@ using `exercism submit Sublist.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. diff --git a/exercises/sum-of-multiples/README.md b/exercises/sum-of-multiples/README.md index 1b5a457806..f642f080f4 100644 --- a/exercises/sum-of-multiples/README.md +++ b/exercises/sum-of-multiples/README.md @@ -30,5 +30,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex A variation on Problem 1 at Project Euler [http://projecteuler.net/problem=1](http://projecteuler.net/problem=1) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/tournament/README.md b/exercises/tournament/README.md index de71f10dc0..5568063136 100644 --- a/exercises/tournament/README.md +++ b/exercises/tournament/README.md @@ -78,5 +78,3 @@ using `exercism submit Tournament.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. diff --git a/exercises/transpose/README.md b/exercises/transpose/README.md index f2d346f1aa..0424aeb52b 100644 --- a/exercises/transpose/README.md +++ b/exercises/transpose/README.md @@ -76,5 +76,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Reddit r/dailyprogrammer challenge #270 [Easy]. [https://www.reddit.com/r/dailyprogrammer/comments/4msu2x/challenge_270_easy_transpose_the_input_text](https://www.reddit.com/r/dailyprogrammer/comments/4msu2x/challenge_270_easy_transpose_the_input_text) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/tree-building/README.md b/exercises/tree-building/README.md index 59ac7605af..c04d3f6917 100644 --- a/exercises/tree-building/README.md +++ b/exercises/tree-building/README.md @@ -40,5 +40,3 @@ using `exercism submit TreeBuilding.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. diff --git a/exercises/triangle/README.md b/exercises/triangle/README.md index 37b25a3743..e77d62238f 100644 --- a/exercises/triangle/README.md +++ b/exercises/triangle/README.md @@ -40,5 +40,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex The Ruby Koans triangle project, parts 1 & 2 [http://rubykoans.com](http://rubykoans.com) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/trinary/README.md b/exercises/trinary/README.md index 3f08d836f4..2d8158d428 100644 --- a/exercises/trinary/README.md +++ b/exercises/trinary/README.md @@ -39,5 +39,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex All of Computer Science [http://www.wolframalpha.com/input/?i=binary&a=*C.binary-_*MathWorld-](http://www.wolframalpha.com/input/?i=binary&a=*C.binary-_*MathWorld-) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/twelve-days/README.md b/exercises/twelve-days/README.md index bd5074fc40..61c43e5a0c 100644 --- a/exercises/twelve-days/README.md +++ b/exercises/twelve-days/README.md @@ -50,5 +50,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [http://en.wikipedia.org/wiki/The_Twelve_Days_of_Christmas_(song)](http://en.wikipedia.org/wiki/The_Twelve_Days_of_Christmas_(song)) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/two-bucket/README.md b/exercises/two-bucket/README.md index bc498e0ea7..1e4718b0b6 100644 --- a/exercises/two-bucket/README.md +++ b/exercises/two-bucket/README.md @@ -47,5 +47,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Water Pouring Problem [http://demonstrations.wolfram.com/WaterPouringProblem/](http://demonstrations.wolfram.com/WaterPouringProblem/) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/two-fer/README.md b/exercises/two-fer/README.md index 615e815633..08b32c19af 100644 --- a/exercises/two-fer/README.md +++ b/exercises/two-fer/README.md @@ -43,5 +43,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex [https://github.com/exercism/problem-specifications/issues/757](https://github.com/exercism/problem-specifications/issues/757) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/variable-length-quantity/README.md b/exercises/variable-length-quantity/README.md index d2cca331fc..57e68c56b0 100644 --- a/exercises/variable-length-quantity/README.md +++ b/exercises/variable-length-quantity/README.md @@ -54,5 +54,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex A poor Splice developer having to implement MIDI encoding/decoding. [https://splice.com](https://splice.com) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/word-count/README.md b/exercises/word-count/README.md index 641042f69a..49b3d46250 100644 --- a/exercises/word-count/README.md +++ b/exercises/word-count/README.md @@ -29,5 +29,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex This is a classic toy problem, but we were reminded of it by seeing it in the Go Tour. -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/word-search/README.md b/exercises/word-search/README.md index 67e7ade347..89333451c3 100644 --- a/exercises/word-search/README.md +++ b/exercises/word-search/README.md @@ -28,10 +28,10 @@ letter of each word. ## HINTS -One of the uses of Tuples is returning multiple values from a function. In this exercise, write -a method that returns a Tuple (the x- and y- part of a coordinate). +One of the uses of Tuples is returning multiple values from a function. In this exercise, write +a function that returns a Tuple (the x- and y- part of a coordinate). -For more information on Tuples, see [this link](). +For more information on Tuples, see [this link](https://msdn.microsoft.com/en-us/library/system.tuple(v=vs.110).aspx). ## Running the tests @@ -47,6 +47,3 @@ using `exercism submit WordSearch.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. diff --git a/exercises/wordy/README.md b/exercises/wordy/README.md index 5ce7b7a425..31f01b69a9 100644 --- a/exercises/wordy/README.md +++ b/exercises/wordy/README.md @@ -89,5 +89,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Inspired by one of the generated questions in the Extreme Startup game. [https://github.com/rchatley/extreme_startup](https://github.com/rchatley/extreme_startup) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/yacht/README.md b/exercises/yacht/README.md index 11e1c6a107..868b6dace5 100644 --- a/exercises/yacht/README.md +++ b/exercises/yacht/README.md @@ -54,5 +54,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex James Kilfiger, using wikipedia [https://en.wikipedia.org/wiki/Yacht_(dice_game)](https://en.wikipedia.org/wiki/Yacht_(dice_game)) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/zebra-puzzle/README.md b/exercises/zebra-puzzle/README.md index 5cdff466a3..16c7cf603c 100644 --- a/exercises/zebra-puzzle/README.md +++ b/exercises/zebra-puzzle/README.md @@ -48,5 +48,3 @@ you're having trouble, please visit the exercism.io [C# language page](http://ex Wikipedia [https://en.wikipedia.org/wiki/Zebra_Puzzle](https://en.wikipedia.org/wiki/Zebra_Puzzle) -## Submitting Incomplete Solutions -It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/exercises/zipper/README.md b/exercises/zipper/README.md index f0700a13e1..22239549a8 100644 --- a/exercises/zipper/README.md +++ b/exercises/zipper/README.md @@ -45,5 +45,3 @@ using `exercism submit Zipper.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. diff --git a/update-docs.ps1 b/update-docs.ps1 index e19c5360ce..eaa1b89232 100644 --- a/update-docs.ps1 +++ b/update-docs.ps1 @@ -1,3 +1,2 @@ .\bin\fetch-configlet -.\bin\configlet generate . -Get-ChildItem -File -Path ".\config\patches" -Filter *.patch | % {& git apply $_.FullName} \ No newline at end of file +.\bin\configlet generate . \ No newline at end of file diff --git a/update-docs.sh b/update-docs.sh index 33cd18477c..910f13da6c 100755 --- a/update-docs.sh +++ b/update-docs.sh @@ -1,5 +1,4 @@ #!/usr/bin/env bash ./bin/fetch-configlet -./bin/configlet generate . -find ./config/patches -type f -name *.patch -exec git apply {} \; \ No newline at end of file +./bin/configlet generate . \ No newline at end of file