Changed the _git clone URL_ into an URL that is available
to all people that have Internet access.
Signed-off-by: Geert Stappers <stappers@stappers.it>
Both sentences are grammatically correct, as the verbs "requires" and "needs" can be used interchangeably in this context. However, the first sentence sounds more formal and is more commonly used in written English, especially in technical or academic contexts.
In the context of your sentences (which are about programming), the first sentence:
"Using pattern &mut V to match a mutable reference requires you to be very careful, due to V being a value after matching"
sounds more suitable. It implies that the action (using the pattern &mut V) necessitates caution on the part of the user, due to the specific circumstance (that V becomes a value after matching).
The second sentence:
"Using pattern &mut V to match a mutable reference needs you to be very careful, due to V being a value after matching"
is also correct but it sounds slightly less formal and is less commonly used in this kind of context. The verb "needs" is more often used to describe a necessity or requirement for a person or thing, rather than an action.
Currently, on line 22 there is only a single placeholder "__",
whereas the correct answer is "mut x"
hence an extra "__" is added
line 22 :
current : let __ = 1;
propose : let __ __ = 1;
Correct answer : let mut x = 1;
cheers