diff --git a/config/exercise_readme.go.tmpl b/config/exercise_readme.go.tmpl index 5e1a85b62f..9027f95eee 100644 --- a/config/exercise_readme.go.tmpl +++ b/config/exercise_readme.go.tmpl @@ -4,9 +4,6 @@ {{- with .Hints }} {{ . }} {{ end }} -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/{{ .Spec.Slug }}` directory. {{ with .Spec.Credits }} ## Source diff --git a/exercises/accumulate/README.md b/exercises/accumulate/README.md index 873a7241c6..5daf60b3be 100644 --- a/exercises/accumulate/README.md +++ b/exercises/accumulate/README.md @@ -28,9 +28,6 @@ Solve this one yourself using other basic tools instead. ## 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). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/accumulate` directory. ## Source diff --git a/exercises/acronym/README.md b/exercises/acronym/README.md index 906d27ee7f..ab53254249 100644 --- a/exercises/acronym/README.md +++ b/exercises/acronym/README.md @@ -7,9 +7,6 @@ Techies love their TLA (Three Letter Acronyms)! Help generate some jargon by writing a program that converts a long name like Portable Network Graphics to its acronym (PNG). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/acronym` directory. ## Source diff --git a/exercises/all-your-base/README.md b/exercises/all-your-base/README.md index c5ae5e0bfb..03074912e8 100644 --- a/exercises/all-your-base/README.md +++ b/exercises/all-your-base/README.md @@ -31,9 +31,6 @@ I think you got the idea! *Yes. Those three numbers above are exactly the same. Congratulations!* -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/all-your-base` directory. ## 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 cac4ec70d1..7002942d09 100644 --- a/exercises/allergies/README.md +++ b/exercises/allergies/README.md @@ -32,9 +32,6 @@ score is 257, your program should only report the eggs (1) allergy. ## Hints This exercise requires you to use bitwise operations. For more information, see [this page](https://msdn.microsoft.com/en-us/library/6a71f45d.aspx). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/allergies` directory. ## Source diff --git a/exercises/alphametics/README.md b/exercises/alphametics/README.md index 2c1fc4fd4d..8b4e7b9d54 100644 --- a/exercises/alphametics/README.md +++ b/exercises/alphametics/README.md @@ -38,9 +38,6 @@ Try to find a more sophisticated solution. - Hint: You could try the column-wise addition algorithm that is usually taught in school. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/alphametics` directory. ## 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 e7d81d7fd8..8f8058c0a9 100644 --- a/exercises/anagram/README.md +++ b/exercises/anagram/README.md @@ -6,9 +6,6 @@ Given `"listen"` and a list of candidates like `"enlists" "google" "inlets" "banana"` the program should return a list containing `"inlets"`. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/anagram` directory. ## Source diff --git a/exercises/armstrong-numbers/README.md b/exercises/armstrong-numbers/README.md index b907884682..29be991038 100644 --- a/exercises/armstrong-numbers/README.md +++ b/exercises/armstrong-numbers/README.md @@ -11,9 +11,6 @@ For example: Write some code to determine whether a number is an Armstrong number. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/armstrong-numbers` directory. ## Source diff --git a/exercises/atbash-cipher/README.md b/exercises/atbash-cipher/README.md index 6b656221ff..b6e9c4305c 100644 --- a/exercises/atbash-cipher/README.md +++ b/exercises/atbash-cipher/README.md @@ -28,9 +28,6 @@ things based on word boundaries. - Decoding `gvhg` gives `test` - Decoding `gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt` gives `thequickbrownfoxjumpsoverthelazydog` -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/atbash-cipher` directory. ## Source diff --git a/exercises/bank-account/README.md b/exercises/bank-account/README.md index c670a2b55a..4f74fdcac2 100644 --- a/exercises/bank-account/README.md +++ b/exercises/bank-account/README.md @@ -31,9 +31,6 @@ This exercise requires you to handle data related to currency and money. A norma Note though that you then only store the numeric value of a currency. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/bank-account` directory. ## 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 f66b2010f9..0d38cdffec 100644 --- a/exercises/beer-song/README.md +++ b/exercises/beer-song/README.md @@ -323,9 +323,6 @@ experiment make the code better? Worse? Did you learn anything from it? ## Hints - Try to capture the structure of the song in your code, where you build up the song by composing its parts. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/beer-song` directory. ## Source diff --git a/exercises/binary-search-tree/README.md b/exercises/binary-search-tree/README.md index d1cdbe54c9..a030b730fe 100644 --- a/exercises/binary-search-tree/README.md +++ b/exercises/binary-search-tree/README.md @@ -53,9 +53,6 @@ And if we then added 1, 5, and 7, it would look like this / \ / \ 1 3 5 7 -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/binary-search-tree` directory. ## Source diff --git a/exercises/binary-search/README.md b/exercises/binary-search/README.md index 6d0fe58d4c..b436f76ee9 100644 --- a/exercises/binary-search/README.md +++ b/exercises/binary-search/README.md @@ -34,9 +34,6 @@ A binary search halves the number of items to check with each iteration, so locating an item (or determining its absence) takes logarithmic time. A binary search is a dichotomic divide and conquer search algorithm. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/binary-search` directory. ## Source diff --git a/exercises/binary/README.md b/exercises/binary/README.md index dddf58e389..fbbb63573c 100644 --- a/exercises/binary/README.md +++ b/exercises/binary/README.md @@ -30,9 +30,6 @@ Binary is similar, but uses powers of 2 rather than powers of 10. So: `101 => 1*2^2 + 0*2^1 + 1*2^0 => 1*4 + 0*2 + 1*1 => 4 + 1 => 5 base 10`. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/binary` directory. ## Source diff --git a/exercises/bob/README.md b/exercises/bob/README.md index 8d9a6ce521..6cb2765df8 100644 --- a/exercises/bob/README.md +++ b/exercises/bob/README.md @@ -13,9 +13,6 @@ anything. He answers 'Whatever.' to anything else. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/bob` directory. ## Source diff --git a/exercises/book-store/README.md b/exercises/book-store/README.md index 4b2b2134c3..6234ac3034 100644 --- a/exercises/book-store/README.md +++ b/exercises/book-store/README.md @@ -67,9 +67,6 @@ For a total of $51.20 And $51.20 is the price with the biggest discount. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/book-store` directory. ## Source diff --git a/exercises/bowling/README.md b/exercises/bowling/README.md index 4e1d6010fe..9ec8055975 100644 --- a/exercises/bowling/README.md +++ b/exercises/bowling/README.md @@ -60,9 +60,6 @@ support two operations: * `score() : int` is called only at the very end of the game. It returns the total score for that game. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/bowling` directory. ## Source diff --git a/exercises/bracket-push/README.md b/exercises/bracket-push/README.md index 814f182a41..32998c40fc 100644 --- a/exercises/bracket-push/README.md +++ b/exercises/bracket-push/README.md @@ -3,9 +3,6 @@ Given a string containing brackets `[]`, braces `{}` and parentheses `()`, verify that all the pairs are matched and nested correctly. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/bracket-push` directory. ## Source diff --git a/exercises/change/README.md b/exercises/change/README.md index 690dd2cc4b..c1cadd5d24 100644 --- a/exercises/change/README.md +++ b/exercises/change/README.md @@ -16,9 +16,6 @@ that the sum of the coins' value would equal the correct amount of change. - Can you ask for negative change? - Can you ask for a change value smaller than the smallest coin value? -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/change` directory. ## Source diff --git a/exercises/circular-buffer/README.md b/exercises/circular-buffer/README.md index 6ec0f78ead..a6c01ceb00 100644 --- a/exercises/circular-buffer/README.md +++ b/exercises/circular-buffer/README.md @@ -50,9 +50,6 @@ the buffer is once again full. [D][7][8][9][A][B][C] -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/circular-buffer` directory. ## Source diff --git a/exercises/clock/README.md b/exercises/clock/README.md index 4a9f614a9b..e6c21babf2 100644 --- a/exercises/clock/README.md +++ b/exercises/clock/README.md @@ -12,9 +12,6 @@ For more information, see [this page] (https://docs.microsoft.com/en-us/dotnet/core/api/System.IEquatable-1) . -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/clock` directory. ## Source diff --git a/exercises/collatz-conjecture/README.md b/exercises/collatz-conjecture/README.md index 0a5aede047..afc22167a7 100644 --- a/exercises/collatz-conjecture/README.md +++ b/exercises/collatz-conjecture/README.md @@ -26,9 +26,6 @@ Starting with n = 12, the steps would be as follows: Resulting in 9 steps. So for input n = 12, the return value would be 9. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/collatz-conjecture` directory. ## Source diff --git a/exercises/complex-numbers/README.md b/exercises/complex-numbers/README.md index 6b7d96b0a9..df2f72e77d 100644 --- a/exercises/complex-numbers/README.md +++ b/exercises/complex-numbers/README.md @@ -31,9 +31,6 @@ Implement the following operations: Assume the programming language you are using does not have an implementation of complex numbers. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/complex-numbers` directory. ## Source diff --git a/exercises/connect/README.md b/exercises/connect/README.md index b6f45f2aaf..fe03c8e191 100644 --- a/exercises/connect/README.md +++ b/exercises/connect/README.md @@ -30,9 +30,6 @@ the representation passed to your code): the above example `O` has made a connection from left to right but nobody has won since `O` didn't connect top and bottom. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/connect` directory. ## 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 e21fc4dfd1..d594bcb22a 100644 --- a/exercises/crypto-square/README.md +++ b/exercises/crypto-square/README.md @@ -69,9 +69,6 @@ aohghn sseoau ``` -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/crypto-square` directory. ## Source diff --git a/exercises/custom-set/README.md b/exercises/custom-set/README.md index ead1577fa0..df6902b536 100644 --- a/exercises/custom-set/README.md +++ b/exercises/custom-set/README.md @@ -13,9 +13,6 @@ For more information, see [this page] (https://docs.microsoft.com/en-us/dotnet/core/api/System.IEquatable-1) . -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/custom-set` directory. ## 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 dafcf0a8db..de6a266eeb 100644 --- a/exercises/diamond/README.md +++ b/exercises/diamond/README.md @@ -64,9 +64,6 @@ In order to facilitate propery-based testing, the tests in this exercise leverag If you would like more information on property-based testing, see [this article](http://www.erikschierboom.com/2016/02/22/property-based-testing/). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/diamond` directory. ## Source diff --git a/exercises/difference-of-squares/README.md b/exercises/difference-of-squares/README.md index fc21027300..ebc022e649 100644 --- a/exercises/difference-of-squares/README.md +++ b/exercises/difference-of-squares/README.md @@ -17,9 +17,6 @@ This exercise requires you to process a collection of data. You can simplify you For more information, see [this page] (https://docs.microsoft.com/en-us/dotnet/articles/standard/using-linq). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/difference-of-squares` directory. ## Source diff --git a/exercises/diffie-hellman/README.md b/exercises/diffie-hellman/README.md index 31ba37fe7c..30cff24711 100644 --- a/exercises/diffie-hellman/README.md +++ b/exercises/diffie-hellman/README.md @@ -42,9 +42,6 @@ This exercise requires you to perform calculations on large numbers. To correctl [BigInteger](https://msdn.microsoft.com/en-us/library/system.numerics.biginteger(v=vs.110).aspx) struct is used. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/diffie-hellman` directory. ## Source diff --git a/exercises/dominoes/README.md b/exercises/dominoes/README.md index 7faf09fc44..30fb06e489 100644 --- a/exercises/dominoes/README.md +++ b/exercises/dominoes/README.md @@ -14,9 +14,6 @@ For stones `[1|2]`, `[4|1]` and `[2|3]` the resulting chain is not valid: `[4|1] Some test cases may use duplicate stones in a chain solution, assume that multiple Domino sets are being used. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/dominoes` directory. ## 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 0ae29216a3..a25df3553c 100644 --- a/exercises/dot-dsl/README.md +++ b/exercises/dot-dsl/README.md @@ -27,9 +27,6 @@ Create a DSL similar to the dot language. ## Hints This exercise requires you to implement classes with a custom equality check. For more information, see [this page](https://msdn.microsoft.com/en-us/library/bsc2ak47(v=vs.110).aspx). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/dot-dsl` directory. ## 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 fe7bcae658..3a393bec48 100644 --- a/exercises/error-handling/README.md +++ b/exercises/error-handling/README.md @@ -9,9 +9,6 @@ This exercise requires you to handle various errors. Because error handling is rather programming language specific you'll have to refer to the tests for your track to see what's exactly required. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/error-handling` directory. ## 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 216b15ec13..91070393d1 100644 --- a/exercises/etl/README.md +++ b/exercises/etl/README.md @@ -46,9 +46,6 @@ variety of languages, each with its own unique scoring table. For example, an "E" is scored at 2 in the Māori-language version of the game while being scored at 4 in the Hawaiian-language version. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/etl` directory. ## Source diff --git a/exercises/flatten-array/README.md b/exercises/flatten-array/README.md index 6b18b966d0..3a73f3127e 100644 --- a/exercises/flatten-array/README.md +++ b/exercises/flatten-array/README.md @@ -10,9 +10,6 @@ input: [1,[2,3,null,4],[null],5] output: [1,2,3,4,5] -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/flatten-array` directory. ## Source diff --git a/exercises/food-chain/README.md b/exercises/food-chain/README.md index db4a96dbba..2164b57baa 100644 --- a/exercises/food-chain/README.md +++ b/exercises/food-chain/README.md @@ -67,9 +67,6 @@ She's dead, of course! - Try to capture the structure of the song in your code, where you build up the song by composing its parts. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/food-chain` directory. ## Source diff --git a/exercises/forth/README.md b/exercises/forth/README.md index 9c2057dc0f..a4c905efaf 100644 --- a/exercises/forth/README.md +++ b/exercises/forth/README.md @@ -29,9 +29,6 @@ Words are case-insensitive. - 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/). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/forth` directory. ## 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 ff535402c5..d904b0f70d 100644 --- a/exercises/gigasecond/README.md +++ b/exercises/gigasecond/README.md @@ -4,9 +4,6 @@ Calculate the moment when someone has lived for 10^9 seconds. A gigasecond is 10^9 (1,000,000,000) seconds. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/gigasecond` directory. ## Source diff --git a/exercises/go-counting/README.md b/exercises/go-counting/README.md index 18de4e4a79..774f83cf73 100644 --- a/exercises/go-counting/README.md +++ b/exercises/go-counting/README.md @@ -33,9 +33,6 @@ For more information see [wikipedia](https://en.wikipedia.org/wiki/Go_%28game%29) or [Sensei's Library](http://senseis.xmp.net/). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/go-counting` directory. ## 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 262bb727c1..4944839e13 100644 --- a/exercises/grade-school/README.md +++ b/exercises/grade-school/README.md @@ -34,9 +34,6 @@ are some additional things you could try: Then please share your thoughts in a comment on the submission. Did this experiment make the code better? Worse? Did you learn anything from it? -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/grade-school` directory. ## Source diff --git a/exercises/grains/README.md b/exercises/grains/README.md index dbf88f934d..d6367d5905 100644 --- a/exercises/grains/README.md +++ b/exercises/grains/README.md @@ -26,9 +26,6 @@ are some additional things you could try: Then please share your thoughts in a comment on the submission. Did this experiment make the code better? Worse? Did you learn anything from it? -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/grains` directory. ## Source diff --git a/exercises/grep/README.md b/exercises/grep/README.md index 544c3beeb3..e53ebbeab9 100644 --- a/exercises/grep/README.md +++ b/exercises/grep/README.md @@ -64,9 +64,6 @@ The `grep` command should support multiple flags at once. For example, running `grep -l -v "hello" file1.txt file2.txt` should print the names of files that do not contain the string "hello". -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/grep` directory. ## Source diff --git a/exercises/hamming/README.md b/exercises/hamming/README.md index 4a21a5379f..fb92047a3d 100644 --- a/exercises/hamming/README.md +++ b/exercises/hamming/README.md @@ -35,9 +35,6 @@ The Hamming distance is only defined for sequences of equal length. This means that based on the definition, each language could deal with getting sequences of equal length differently. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/hamming` directory. ## Source diff --git a/exercises/hangman/README.md b/exercises/hangman/README.md index 8896bb821a..3919bb8f95 100644 --- a/exercises/hangman/README.md +++ b/exercises/hangman/README.md @@ -22,9 +22,6 @@ This exercise requires you to work with events. For more information, see [this (https://docs.microsoft.com/en-us/dotnet/articles/csharp/programming-guide/events/) . -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/hangman` directory. ## 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 07190989df..2910d2a0f3 100644 --- a/exercises/hello-world/README.md +++ b/exercises/hello-world/README.md @@ -14,9 +14,6 @@ The objectives are simple: If everything goes well, you will be ready to fetch your first real exercise. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/hello-world` directory. ## Source diff --git a/exercises/hexadecimal/README.md b/exercises/hexadecimal/README.md index 3c289bafdc..b0ebfa3185 100644 --- a/exercises/hexadecimal/README.md +++ b/exercises/hexadecimal/README.md @@ -7,9 +7,6 @@ teal: 008080, navy: 000080). The program should handle invalid hexadecimal strings. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/hexadecimal` directory. ## Source diff --git a/exercises/house/README.md b/exercises/house/README.md index 404c6e29ca..c0f2c71f42 100644 --- a/exercises/house/README.md +++ b/exercises/house/README.md @@ -109,9 +109,6 @@ that lay in the house that Jack built. Try to capture the structure of the song in your code, where you build up the song by composing its parts. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/house` directory. ## Source diff --git a/exercises/isbn-verifier/README.md b/exercises/isbn-verifier/README.md index f6470323e9..7720eb7c7f 100644 --- a/exercises/isbn-verifier/README.md +++ b/exercises/isbn-verifier/README.md @@ -40,9 +40,6 @@ Now, it's even trickier since the check digit of an ISBN-10 may be 'X' (represen * Generate a valid ISBN-13 from the input ISBN-10 (and maybe verify it again with a derived verifier). * Generate valid ISBN, maybe even from a given starting ISBN. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/isbn-verifier` directory. ## Source diff --git a/exercises/isogram/README.md b/exercises/isogram/README.md index 2a67ef4c71..48b34e909a 100644 --- a/exercises/isogram/README.md +++ b/exercises/isogram/README.md @@ -13,9 +13,6 @@ Examples of isograms: The word *isograms*, however, is not an isogram, because the s repeats. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/isogram` directory. ## Source diff --git a/exercises/kindergarten-garden/README.md b/exercises/kindergarten-garden/README.md index 4f2bfc5311..fa9baa80b6 100644 --- a/exercises/kindergarten-garden/README.md +++ b/exercises/kindergarten-garden/README.md @@ -59,9 +59,6 @@ While asking for Bob's plants would yield: - Clover, grass, clover, clover -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/kindergarten-garden` directory. ## Source diff --git a/exercises/largest-series-product/README.md b/exercises/largest-series-product/README.md index 75f59d79ad..39d1f107d4 100644 --- a/exercises/largest-series-product/README.md +++ b/exercises/largest-series-product/README.md @@ -13,9 +13,6 @@ in the input; the digits need not be *numerically consecutive*. For the input `'73167176531330624919225119674426574742355349194934'`, the largest product for a series of 6 digits is 23520. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/largest-series-product` directory. ## Source diff --git a/exercises/leap/README.md b/exercises/leap/README.md index 775fee75bb..09d958894d 100644 --- a/exercises/leap/README.md +++ b/exercises/leap/README.md @@ -26,9 +26,6 @@ phenomenon, go watch [this youtube video][video]. [video]: http://www.youtube.com/watch?v=xX96xng7sAE -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/leap` directory. ## Source diff --git a/exercises/ledger/README.md b/exercises/ledger/README.md index 872a8da7f3..3e205bddbb 100644 --- a/exercises/ledger/README.md +++ b/exercises/ledger/README.md @@ -14,9 +14,6 @@ working version. Version control tools like git can help here as well. Please keep a log of what changes you've made and make a comment on the exercise containing that log, this will help reviewers. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/ledger` directory. ## 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 77c6d4ae00..d3acc69f91 100644 --- a/exercises/linked-list/README.md +++ b/exercises/linked-list/README.md @@ -27,9 +27,6 @@ empty list. If you want to know more about linked lists, check [Wikipedia](https://en.wikipedia.org/wiki/Linked_list). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/linked-list` directory. ## Source diff --git a/exercises/list-ops/README.md b/exercises/list-ops/README.md index 896898de71..d7b9c46f1f 100644 --- a/exercises/list-ops/README.md +++ b/exercises/list-ops/README.md @@ -9,9 +9,6 @@ without using existing functions. ## Hints The `Foldl` and `Foldr` methods are "fold" functions, which is a concept well-known in the functional programming world, but less so in the object-oriented one. If you'd like more background information, check out this [fold](https://en.wikipedia.org/wiki/Fold_(higher-order_function)) page. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/list-ops` directory. ## 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 9acc887b43..e95c78bbef 100644 --- a/exercises/luhn/README.md +++ b/exercises/luhn/README.md @@ -64,9 +64,6 @@ Sum the digits 57 is not evenly divisible by 10, so this number is not valid. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/luhn` directory. ## Source diff --git a/exercises/markdown/README.md b/exercises/markdown/README.md index d6d8e4a0b5..6ea7c3c41c 100644 --- a/exercises/markdown/README.md +++ b/exercises/markdown/README.md @@ -18,9 +18,6 @@ important thing is to make the code better! For this exercise the following C# feature comes in handy: - [String Interpolation](https://msdn.microsoft.com/en-us/library/dn961160.aspx) (C# 6 and up). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/markdown` directory. ## 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 ae9699ff3b..ed020185fb 100644 --- a/exercises/matrix/README.md +++ b/exercises/matrix/README.md @@ -40,9 +40,6 @@ And its columns: - 8, 3, 6 - 7, 2, 7 -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/matrix` directory. ## Source diff --git a/exercises/meetup/README.md b/exercises/meetup/README.md index c88e0895b4..2a8b6eb06b 100644 --- a/exercises/meetup/README.md +++ b/exercises/meetup/README.md @@ -26,9 +26,6 @@ Given examples of a meetup dates, each containing a month, day, year, and descriptor calculate the date of the actual meetup. For example, if given "The first Monday of January 2017", the correct meetup date is 2017/1/2. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/meetup` directory. ## Source diff --git a/exercises/minesweeper/README.md b/exercises/minesweeper/README.md index af13a13dc5..f663d1e374 100644 --- a/exercises/minesweeper/README.md +++ b/exercises/minesweeper/README.md @@ -26,9 +26,6 @@ into this: | 111 | +-----+ -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/minesweeper` directory. ## 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 fcb0f9572c..5670c4b938 100644 --- a/exercises/nth-prime/README.md +++ b/exercises/nth-prime/README.md @@ -16,9 +16,6 @@ See [this article](https://blogs.msdn.microsoft.com/pedram/2007/06/02/lazy-evalu Note: to help speedup calculation, you should not check numbers which you know beforehand will never be prime. For more information, see the [Sieve of Eratosthenes](https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/nth-prime` directory. ## Source diff --git a/exercises/nucleotide-count/README.md b/exercises/nucleotide-count/README.md index 2030439ece..54b50afe09 100644 --- a/exercises/nucleotide-count/README.md +++ b/exercises/nucleotide-count/README.md @@ -16,9 +16,6 @@ Here is an analogy: This exercise requires the use of a Dictionary. For more information see [this page.](https://msdn.microsoft.com/en-us/library/s4ys34ea(v=vs.110).aspx) -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/nucleotide-count` directory. ## Source diff --git a/exercises/ocr-numbers/README.md b/exercises/ocr-numbers/README.md index 77dc95e962..d5c63660d6 100644 --- a/exercises/ocr-numbers/README.md +++ b/exercises/ocr-numbers/README.md @@ -78,9 +78,6 @@ Update your program to handle multiple numbers, one per line. When converting se Is converted to "123,456,789" -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/ocr-numbers` directory. ## Source diff --git a/exercises/octal/README.md b/exercises/octal/README.md index 109f59a3ca..e2330f3baa 100644 --- a/exercises/octal/README.md +++ b/exercises/octal/README.md @@ -46,9 +46,6 @@ So: = 155 ``` -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/octal` directory. ## Source diff --git a/exercises/palindrome-products/README.md b/exercises/palindrome-products/README.md index 7b86e78d49..99e683e598 100644 --- a/exercises/palindrome-products/README.md +++ b/exercises/palindrome-products/README.md @@ -37,9 +37,6 @@ The largest palindrome product is `9009`. Its factors are `(91, 99)`. For this exercise, you will need to create a set of factors using tuples. For more information on tuples, see [this link](https://msdn.microsoft.com/en-us/library/system.tuple(v=vs.110).aspx). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/palindrome-products` directory. ## Source diff --git a/exercises/pangram/README.md b/exercises/pangram/README.md index 14088739e7..14e4fd7638 100644 --- a/exercises/pangram/README.md +++ b/exercises/pangram/README.md @@ -8,9 +8,6 @@ The best known English pangram is: The alphabet used consists of ASCII letters `a` to `z`, inclusive, and is case insensitive. Input will not contain non-ASCII symbols. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/pangram` directory. ## Source diff --git a/exercises/parallel-letter-frequency/README.md b/exercises/parallel-letter-frequency/README.md index 199384e17f..584d843641 100644 --- a/exercises/parallel-letter-frequency/README.md +++ b/exercises/parallel-letter-frequency/README.md @@ -7,9 +7,6 @@ sequentially. A common example is counting the frequency of letters. Create a function that returns the total frequency of each letter in a list of texts and that employs parallelism. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/parallel-letter-frequency` directory. ## 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 da3b8aa4ef..a102a4400f 100644 --- a/exercises/pascals-triangle/README.md +++ b/exercises/pascals-triangle/README.md @@ -14,9 +14,6 @@ the right and left of the current position in the previous row. # ... etc ``` -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/pascals-triangle` directory. ## Source diff --git a/exercises/perfect-numbers/README.md b/exercises/perfect-numbers/README.md index a237132093..bf2c396000 100644 --- a/exercises/perfect-numbers/README.md +++ b/exercises/perfect-numbers/README.md @@ -17,9 +17,6 @@ The Greek mathematician [Nicomachus](https://en.wikipedia.org/wiki/Nicomachus) d Implement a way to determine whether a given number is **perfect**. Depending on your language track, you may also need to implement a way to determine whether a given number is **abundant** or **deficient**. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/perfect-numbers` directory. ## Source diff --git a/exercises/phone-number/README.md b/exercises/phone-number/README.md index e471ed2369..c5677ddba7 100644 --- a/exercises/phone-number/README.md +++ b/exercises/phone-number/README.md @@ -28,9 +28,6 @@ should all produce the output **Note:** As this exercise only deals with telephone numbers used in NANP-countries, only 1 is considered a valid country code. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/phone-number` directory. ## Source diff --git a/exercises/pig-latin/README.md b/exercises/pig-latin/README.md index 4a8381e413..f59f7227ca 100644 --- a/exercises/pig-latin/README.md +++ b/exercises/pig-latin/README.md @@ -17,9 +17,6 @@ variants too. See for more details. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/pig-latin` directory. ## Source diff --git a/exercises/poker/README.md b/exercises/poker/README.md index 43f0f189bb..ffd6eef3da 100644 --- a/exercises/poker/README.md +++ b/exercises/poker/README.md @@ -5,9 +5,6 @@ Pick the best hand(s) from a list of poker hands. See [wikipedia](https://en.wikipedia.org/wiki/List_of_poker_hands) for an overview of poker hands. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/poker` directory. ## Source diff --git a/exercises/pov/README.md b/exercises/pov/README.md index 63f730ad7d..acd2217578 100644 --- a/exercises/pov/README.md +++ b/exercises/pov/README.md @@ -37,9 +37,6 @@ a different leaf node) can be seen to follow the path 6-2-0-3-9 This exercise involves taking an input graph and re-orientating it from the point of view of one of the nodes. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/pov` directory. ## Source diff --git a/exercises/prime-factors/README.md b/exercises/prime-factors/README.md index c2b3c16885..b46f4715d4 100644 --- a/exercises/prime-factors/README.md +++ b/exercises/prime-factors/README.md @@ -29,9 +29,6 @@ You can check this yourself: - = 60 - Success! -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/prime-factors` directory. ## Source diff --git a/exercises/protein-translation/README.md b/exercises/protein-translation/README.md index e7ee0a243d..091c1b0a61 100644 --- a/exercises/protein-translation/README.md +++ b/exercises/protein-translation/README.md @@ -41,9 +41,6 @@ UAA, UAG, UGA | STOP Learn more about [protein translation on Wikipedia](http://en.wikipedia.org/wiki/Translation_(biology)) -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/protein-translation` directory. ## Source diff --git a/exercises/proverb/README.md b/exercises/proverb/README.md index 01cbd1df98..186eb77c43 100644 --- a/exercises/proverb/README.md +++ b/exercises/proverb/README.md @@ -20,9 +20,6 @@ Note that the list of inputs may vary; your solution should be able to handle li Try to capture the structure of the song in your code, where you build up the song by composing its parts. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/proverb` directory. ## Source diff --git a/exercises/pythagorean-triplet/README.md b/exercises/pythagorean-triplet/README.md index f49e2aabab..902e6b7640 100644 --- a/exercises/pythagorean-triplet/README.md +++ b/exercises/pythagorean-triplet/README.md @@ -17,9 +17,6 @@ There exists exactly one Pythagorean triplet for which a + b + c = 1000. Find the product a * b * c. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/pythagorean-triplet` directory. ## Source diff --git a/exercises/queen-attack/README.md b/exercises/queen-attack/README.md index 313139a512..65cfe65c51 100644 --- a/exercises/queen-attack/README.md +++ b/exercises/queen-attack/README.md @@ -26,9 +26,6 @@ You'd also be able to answer whether the queens can attack each other. In this case, that answer would be yes, they can, because both pieces share a diagonal. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/queen-attack` directory. ## Source diff --git a/exercises/rail-fence-cipher/README.md b/exercises/rail-fence-cipher/README.md index d3bd0782f4..0fbdf312c4 100644 --- a/exercises/rail-fence-cipher/README.md +++ b/exercises/rail-fence-cipher/README.md @@ -58,9 +58,6 @@ W . . . E . . . C . . . R . . . L . . . T . . . E If you now read along the zig-zag shape you can read the original message. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/rail-fence-cipher` directory. ## Source diff --git a/exercises/raindrops/README.md b/exercises/raindrops/README.md index 9bb26592d5..36a0aed6e4 100644 --- a/exercises/raindrops/README.md +++ b/exercises/raindrops/README.md @@ -17,9 +17,6 @@ Convert a number to a string, the contents of which depend on the number's facto - 34 has four factors: 1, 2, 17, and 34. - In raindrop-speak, this would be "34". -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/raindrops` directory. ## Source diff --git a/exercises/react/README.md b/exercises/react/README.md index 621ee0c4bb..67f95eb818 100644 --- a/exercises/react/README.md +++ b/exercises/react/README.md @@ -19,9 +19,6 @@ state has changed from the previous stable state. In this exercise the following C# feature is used: - [Events](https://msdn.microsoft.com/en-us/library/9aackb16(v=vs.110).aspx). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/react` directory. ## 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 7cfb6034f9..1133bd52de 100644 --- a/exercises/rectangles/README.md +++ b/exercises/rectangles/README.md @@ -63,9 +63,6 @@ The above diagram contains 6 rectangles: You may assume that the input is always a proper rectangle (i.e. the length of every line equals the length of the first line). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/rectangles` directory. ## 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 c3890c8290..72d31a463d 100644 --- a/exercises/reverse-string/README.md +++ b/exercises/reverse-string/README.md @@ -6,9 +6,6 @@ For example: input: "cool" output: "looc" -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/reverse-string` directory. ## Source diff --git a/exercises/rna-transcription/README.md b/exercises/rna-transcription/README.md index de2afe2240..8892650329 100644 --- a/exercises/rna-transcription/README.md +++ b/exercises/rna-transcription/README.md @@ -18,9 +18,6 @@ each nucleotide with its complement: * `T` -> `A` * `A` -> `U` -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/rna-transcription` directory. ## Source diff --git a/exercises/robot-name/README.md b/exercises/robot-name/README.md index 4f23a27f15..10f27d12da 100644 --- a/exercises/robot-name/README.md +++ b/exercises/robot-name/README.md @@ -15,9 +15,6 @@ The names must be random: they should not follow a predictable sequence. Random names means a risk of collisions. Your solution must ensure that every existing robot has a unique name. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/robot-name` directory. ## Source diff --git a/exercises/robot-simulator/README.md b/exercises/robot-simulator/README.md index 81e5c94ad3..1cc80657d2 100644 --- a/exercises/robot-simulator/README.md +++ b/exercises/robot-simulator/README.md @@ -27,9 +27,6 @@ direction it is pointing. - Say a robot starts at {7, 3} facing north. Then running this stream of instructions should leave it at {9, 4} facing west. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/robot-simulator` directory. ## Source diff --git a/exercises/roman-numerals/README.md b/exercises/roman-numerals/README.md index 690519c878..3228ad143f 100644 --- a/exercises/roman-numerals/README.md +++ b/exercises/roman-numerals/README.md @@ -46,9 +46,6 @@ See also: http://www.novaroma.org/via_romana/numbers.html This exercise requires you to write an extension method. For more information, see [this page](https://msdn.microsoft.com/en-us//library/bb383977.aspx). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/roman-numerals` directory. ## Source diff --git a/exercises/rotational-cipher/README.md b/exercises/rotational-cipher/README.md index 16fbf0ad04..766ecf6ad7 100644 --- a/exercises/rotational-cipher/README.md +++ b/exercises/rotational-cipher/README.md @@ -30,9 +30,6 @@ Ciphertext is written out in the same formatting as the input including spaces a - ROT13 `The quick brown fox jumps over the lazy dog.` gives `Gur dhvpx oebja sbk whzcf bire gur ynml qbt.` - ROT13 `Gur dhvpx oebja sbk whzcf bire gur ynml qbt.` gives `The quick brown fox jumps over the lazy dog.` -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/rotational-cipher` directory. ## Source diff --git a/exercises/run-length-encoding/README.md b/exercises/run-length-encoding/README.md index 00401dd647..0e9d4a5032 100644 --- a/exercises/run-length-encoding/README.md +++ b/exercises/run-length-encoding/README.md @@ -23,9 +23,6 @@ the letters A through Z (either lower or upper case) and whitespace. This way data to be encoded will never contain any numbers and numbers inside data to be decoded always represent the count for the following character. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/run-length-encoding` directory. ## Source diff --git a/exercises/saddle-points/README.md b/exercises/saddle-points/README.md index 1eb2a6b7c6..39515ab3c4 100644 --- a/exercises/saddle-points/README.md +++ b/exercises/saddle-points/README.md @@ -31,9 +31,6 @@ but the tests for this exercise follow the above unambiguous definition. For this exercise, you will need to create a set of factors using tuples. For more information on tuples, see [this link](https://msdn.microsoft.com/en-us/library/system.tuple(v=vs.110).aspx). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/saddle-points` directory. ## Source diff --git a/exercises/say/README.md b/exercises/say/README.md index 17f84c4086..0333ff89da 100644 --- a/exercises/say/README.md +++ b/exercises/say/README.md @@ -62,9 +62,6 @@ Use _and_ (correctly) when spelling out the number in English: - 1002 becomes "one thousand and two". - 1323 becomes "one thousand three hundred and twenty-three". -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/say` directory. ## Source diff --git a/exercises/scale-generator/README.md b/exercises/scale-generator/README.md index e102b11f46..aa96ed2f7f 100644 --- a/exercises/scale-generator/README.md +++ b/exercises/scale-generator/README.md @@ -55,9 +55,6 @@ Here is a table of pitches with the names of their interval distance from the to | | | Dim 3rd | Aug 2nd | Dim 4th | | Aug 4th | Dim 5th | Aug 5th | Dim 7th | Aug 6th | Dim 8ve | | | | | | | | | Dim 5th | | | | | | | -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/scale-generator` directory. ## 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 b1f1eadfac..6d4e771d82 100644 --- a/exercises/scrabble-score/README.md +++ b/exercises/scrabble-score/README.md @@ -39,9 +39,6 @@ And to total: - You can play a double or a triple letter. - You can play a double or a triple word. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/scrabble-score` directory. ## Source diff --git a/exercises/secret-handshake/README.md b/exercises/secret-handshake/README.md index 870b4e65ab..3192c52d42 100644 --- a/exercises/secret-handshake/README.md +++ b/exercises/secret-handshake/README.md @@ -28,9 +28,6 @@ Given the input 19, the function would return the array Notice that the addition of 16 (10000 in binary) has caused the array to be reversed. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/secret-handshake` directory. ## Source diff --git a/exercises/series/README.md b/exercises/series/README.md index 7f1f162e00..19d78432af 100644 --- a/exercises/series/README.md +++ b/exercises/series/README.md @@ -20,9 +20,6 @@ whatever you get. Note that these series are only required to occupy *adjacent positions* in the input; the digits need not be *numerically consecutive*. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/series` directory. ## Source diff --git a/exercises/sgf-parsing/README.md b/exercises/sgf-parsing/README.md index a92a543929..f79a44a589 100644 --- a/exercises/sgf-parsing/README.md +++ b/exercises/sgf-parsing/README.md @@ -68,9 +68,6 @@ data types of properties, just use the rules for the - 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/). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/sgf-parsing` directory. ## 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 e8d0670763..3149278929 100644 --- a/exercises/sieve/README.md +++ b/exercises/sieve/README.md @@ -27,9 +27,6 @@ Notice that this is a very specific algorithm, and the tests don't check that you've implemented the algorithm, only that you've come up with the correct list of primes. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/sieve` directory. ## Source diff --git a/exercises/simple-cipher/README.md b/exercises/simple-cipher/README.md index 3501f00019..9605876d89 100644 --- a/exercises/simple-cipher/README.md +++ b/exercises/simple-cipher/README.md @@ -81,9 +81,6 @@ on Wikipedia][dh] for one of the first implementations of this scheme. [1]: https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Caesar_cipher_left_shift_of_3.svg/320px-Caesar_cipher_left_shift_of_3.svg.png [dh]: http://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/simple-cipher` directory. ## Source diff --git a/exercises/simple-linked-list/README.md b/exercises/simple-linked-list/README.md index 7e77ac8fdd..12f539796e 100644 --- a/exercises/simple-linked-list/README.md +++ b/exercises/simple-linked-list/README.md @@ -25,9 +25,6 @@ implement your own abstract data type. This exercise requires you to create a linked list data structure which can be iterated. This requires you to implement the IEnumerable\ interface. For more information, see [this page](https://msdn.microsoft.com/en-us/library/9eekhta0(v=vs.110).aspx). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/simple-linked-list` directory. ## Source diff --git a/exercises/space-age/README.md b/exercises/space-age/README.md index 1672c17761..61c5b1bd28 100644 --- a/exercises/space-age/README.md +++ b/exercises/space-age/README.md @@ -17,9 +17,6 @@ be able to say that they're 31.69 Earth-years old. If you're wondering why Pluto didn't make the cut, go watch [this youtube video](http://www.youtube.com/watch?v=Z_2gbGXzFbs). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/space-age` directory. ## Source diff --git a/exercises/spiral-matrix/README.md b/exercises/spiral-matrix/README.md index b044e23a8b..a5a0c82fea 100644 --- a/exercises/spiral-matrix/README.md +++ b/exercises/spiral-matrix/README.md @@ -23,9 +23,6 @@ like these examples: 10 9 8 7 ``` -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/spiral-matrix` directory. ## Source diff --git a/exercises/strain/README.md b/exercises/strain/README.md index 34968f37cf..06e2c5f026 100644 --- a/exercises/strain/README.md +++ b/exercises/strain/README.md @@ -33,9 +33,6 @@ Keep your hands off that filter/reject/whatchamacallit functionality provided by your standard library! Solve this one yourself using other basic tools instead. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/strain` directory. ## Source diff --git a/exercises/sublist/README.md b/exercises/sublist/README.md index c27e53b32c..a5746669ac 100644 --- a/exercises/sublist/README.md +++ b/exercises/sublist/README.md @@ -22,9 +22,6 @@ To be able to compare data, the IComparable interface is used. For more information, see [this page](https://msdn.microsoft.com/en-us/library/system.icomparable(v=vs.110).aspx). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/sublist` directory. ## 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 12775bc401..8b761d2a59 100644 --- a/exercises/sum-of-multiples/README.md +++ b/exercises/sum-of-multiples/README.md @@ -12,9 +12,6 @@ The sum of these multiples is 78. This exercise requires you to process a collection of data. You can simplify your code by using LINQ (Language Integrated Query). For more information, see [this page](https://docs.microsoft.com/en-us/dotnet/articles/standard/using-linq). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/sum-of-multiples` directory. ## Source diff --git a/exercises/tournament/README.md b/exercises/tournament/README.md index f866c7956f..0b1faf6aca 100644 --- a/exercises/tournament/README.md +++ b/exercises/tournament/README.md @@ -64,9 +64,6 @@ Devastating Donkeys;Courageous Californians;draw Means that the Devastating Donkeys and Courageous Californians tied. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/tournament` directory. ## 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 fba2de1ade..b5d75f2808 100644 --- a/exercises/transpose/README.md +++ b/exercises/transpose/README.md @@ -58,9 +58,6 @@ In general, all characters from the input should also be present in the transpos That means that if a column in the input text contains only spaces on its bottom-most row(s), the corresponding output row should contain the spaces in its right-most column(s). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/transpose` directory. ## Source diff --git a/exercises/tree-building/README.md b/exercises/tree-building/README.md index a239cf1f5b..dd35c868e4 100644 --- a/exercises/tree-building/README.md +++ b/exercises/tree-building/README.md @@ -26,9 +26,6 @@ root (ID: 0, parent ID: 0) +-- child3 (ID: 5, parent ID: 0) ``` -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/tree-building` directory. ## 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 b2e72c666c..aea94fbbe5 100644 --- a/exercises/triangle/README.md +++ b/exercises/triangle/README.md @@ -22,9 +22,6 @@ The case where the sum of the lengths of two sides _equals_ that of the third is known as a _degenerate_ triangle - it has zero area and looks like a single line. Feel free to add your own code/tests to check for degenerate triangles. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/triangle` directory. ## Source diff --git a/exercises/trinary/README.md b/exercises/trinary/README.md index 193dead5b4..7869dca0b9 100644 --- a/exercises/trinary/README.md +++ b/exercises/trinary/README.md @@ -21,9 +21,6 @@ is the 3's place, the third to last is the 9's place, etc. If your language provides a method in the standard library to perform the conversion, pretend it doesn't exist and implement it yourself. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/trinary` directory. ## Source diff --git a/exercises/twelve-days/README.md b/exercises/twelve-days/README.md index 8f1dd40f35..0641a74644 100644 --- a/exercises/twelve-days/README.md +++ b/exercises/twelve-days/README.md @@ -32,9 +32,6 @@ On the twelfth day of Christmas my true love gave to me, twelve Drummers Drummin - Try to capture the structure of the song in your code, where you build up the song by composing its parts. -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/twelve-days` directory. ## Source diff --git a/exercises/two-bucket/README.md b/exercises/two-bucket/README.md index 0571998373..cc5ffedafc 100644 --- a/exercises/two-bucket/README.md +++ b/exercises/two-bucket/README.md @@ -29,9 +29,6 @@ To conclude, the only valid moves are: Written with <3 at [Fullstack Academy](http://www.fullstackacademy.com/) by [Lindsay](http://lindsaylevine.com). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/two-bucket` directory. ## Source diff --git a/exercises/two-fer/README.md b/exercises/two-fer/README.md index b67052f0ed..f320586eea 100644 --- a/exercises/two-fer/README.md +++ b/exercises/two-fer/README.md @@ -12,9 +12,6 @@ If the given name is "Alice", the result should be "One for Alice, one for me." If no name is given, the result should be "One for you, one for me." -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/two-fer` directory. ## Source diff --git a/exercises/variable-length-quantity/README.md b/exercises/variable-length-quantity/README.md index 55802b21f2..76e5a93f66 100644 --- a/exercises/variable-length-quantity/README.md +++ b/exercises/variable-length-quantity/README.md @@ -36,9 +36,6 @@ This exercise requires you to use bitwise operations. For more information, see (https://msdn.microsoft.com/en-us/library/6a71f45d.aspx). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/variable-length-quantity` directory. ## Source diff --git a/exercises/word-count/README.md b/exercises/word-count/README.md index ebd228a92b..8ca9819106 100644 --- a/exercises/word-count/README.md +++ b/exercises/word-count/README.md @@ -11,9 +11,6 @@ come: 1 free: 1 ``` -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/word-count` directory. ## Source diff --git a/exercises/word-search/README.md b/exercises/word-search/README.md index 5b0e643b1f..40578922a6 100644 --- a/exercises/word-search/README.md +++ b/exercises/word-search/README.md @@ -33,9 +33,6 @@ a function 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). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/word-search` directory. ## 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 943f7930e6..e9017d6a52 100644 --- a/exercises/wordy/README.md +++ b/exercises/wordy/README.md @@ -55,9 +55,6 @@ If you'd like, handle exponentials. - 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/). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/wordy` directory. ## Source diff --git a/exercises/zebra-puzzle/README.md b/exercises/zebra-puzzle/README.md index 766ac33a88..9df93953da 100644 --- a/exercises/zebra-puzzle/README.md +++ b/exercises/zebra-puzzle/README.md @@ -30,9 +30,6 @@ This exercise requires you to process a collection of data. You can simplify you For more information, see [this page](https://xosfaere.wordpress.com/2010/03/21/lazy-evaluation-in-csharp/). -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/zebra-puzzle` directory. ## Source diff --git a/exercises/zipper/README.md b/exercises/zipper/README.md index 54ee8a6a8f..6ea362a999 100644 --- a/exercises/zipper/README.md +++ b/exercises/zipper/README.md @@ -31,9 +31,6 @@ list of child nodes) a zipper might support these operations: This exercise deals with custom equality. For more information see [this page.](http://www.loganfranken.com/blog/687/overriding-equals-in-c-part-1/) -### Submitting Exercises - -Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/zipper` directory. ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.