Skip to content

Commit aa53c29

Browse files
committed
Format all instructions.append.md to start with an H1 (required but ignored) and H2
1 parent 4e98758 commit aa53c29

35 files changed

Lines changed: 104 additions & 34 deletions

File tree

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
# Hints
1+
# Instructions append
2+
3+
## Hints
24

35
This exercise requires you to use bitwise operations. For more information, see [this page](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/bitwise-and-shift-operators).

exercises/practice/alphametics/.docs/instructions.append.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Hints
1+
# Instructions append
2+
3+
## Hints
24

35
- 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/).
46
- You can solve this exercise with a brute force algorithm, but this will possibly have a poor runtime performance.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Instructions Append
22

3+
## Implementation
4+
35
You must return the anagrams in the same order as they are listed in the candidate words.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Hints
1+
# Instructions append
2+
3+
## Hints
24

35
This exercise requires you to handle data related to currency and money. A normal approach is to use the [Decimal](https://docs.microsoft.com/en-us/dotnet/api/system.decimal).
46
Note though that you then only store the numeric value of a currency.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
# Hints
1+
# Instructions append
2+
3+
## Hints
24

35
- Try to capture the structure of the song in your code, where you build up the song by composing its parts.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Hints
1+
# Instructions append
2+
3+
## Hints
24

35
This exercise requires you to implement a type-specific method for determining equality of instances.
46
For more information, see [this page](https://docs.microsoft.com/en-us/dotnet/api/System.IEquatable-1)
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Hints
1+
# Instructions append
2+
3+
## Hints
24

35
This exercise requires you to create custom equality comparison logic.
46
For more information, see [this page](https://docs.microsoft.com/en-us/dotnet/api/system.object.equals).

exercises/practice/diamond/.docs/instructions.append.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Hints
1+
# Instructions append
2+
3+
## Hints
24

35
The tests in this exercise are different from your usual tests. Normally, a test checks if for a given input, the output matches the expected value. This is called _value-based testing_. However, this exercise uses _property-based testing_, where the tests check if for a range of inputs, the output has a specific property. The two key differences that differentiate property-based testing from value-based testing are:
46

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Hints
1+
# Instructions append
2+
3+
## Hints
24

35
This exercise requires you to process a collection of data. You can simplify your code by using LINQ (Language Integrated Query).
46
For more information, see [this page](https://docs.microsoft.com/en-us/dotnet/articles/standard/using-linq).
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Hints
1+
# Instructions append
2+
3+
## Hints
24

35
This exercise requires you to perform calculations on large numbers. To correctly represent large numbers, the
46
[BigInteger](https://docs.microsoft.com/en-us/dotnet/api/system.numerics.biginteger

0 commit comments

Comments
 (0)