Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions exercises/practice/allergies/.docs/instruction.append.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Instructions append

## Track specific instructions

Your task is to implement two functions

- `isAllergicTo`: which takes as input the patient allergy score and the allergen under test, and returns true if the patient is allergic to the given allergen.
Expand Down
4 changes: 4 additions & 0 deletions exercises/practice/bob/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Instructions append

## Track specific instructions

Implement a function called `response` which takes a string as input and produces Bob's response as output.
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Instructions append

## Track specific instructions

Your task is to implement a record `circularBuffer` that has the following methods

- `clear()`: empties the buffer.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Instructions append

## Track specific instructions

Your function is to implement a function called `steps` which takes as input an integer `n` and returns the number of steps to get to 1.
If the input `n` is smaller than or equal to zero, then the function should return an `IllegalArgumentError` with error message `Only positive integers are allowed`.
4 changes: 4 additions & 0 deletions exercises/practice/darts/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Instructions append

## Track specific instructions

The function to implement should be called `score`.
4 changes: 4 additions & 0 deletions exercises/practice/gigasecond/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Instructions append

## Track specific instructions

Write a function `addGigasecond` which takes as input an object of type `datetime` and returns an object of the same type, representing the time instant one gigasecond later.
4 changes: 4 additions & 0 deletions exercises/practice/high-scores/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Instructions append

## Track specific instructions

Your task is to write three functions

- `latest`: which takes an array of scores and returns the last one.
Expand Down
4 changes: 4 additions & 0 deletions exercises/practice/isogram/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Instructions append

## Track specific instructions

Write a function `isIsogram` which takes as input a string and returns true if it is an isogram and false otherwise.
4 changes: 4 additions & 0 deletions exercises/practice/leap/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Instructions append

## Track specific instructions

Implement a function called `isLeapYear`, which takes as input the year and returns true if it is a leap year and false otherwise.
5 changes: 4 additions & 1 deletion exercises/practice/meetup/.docs/instruction.append.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
Your task is to implement a function called `meetup` which takes 4 inputs: the year, the month, the description and the day of the week and returns the date as an object of type `date` (defined in the `Time` built-in module).
# Instructions append

## Track specific instructions

Your task is to implement a function called `meetup` which takes 4 inputs: the year, the month, the description and the day of the week and returns the date as an object of type `date` (defined in the `Time` built-in module).
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Instructions append

## Track specific instructions

Your task is to write a function `nucleotideCounts` which takes as input a string and returns as output an associative array counting how many times each nucleotide is present.
If the string is an invalid sequence, the function should throw an `IllegalArgumentError` with message `Invalid nucleotide in strand`.
4 changes: 4 additions & 0 deletions exercises/practice/raindrops/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Instructions append

## Track specific instructions

Implement a function called `raindrops` which returns a string as described above.
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Instructions append

## Track specific instructions

Your task is to implement two functions

- `colors`: which returns an array of strings containing the colors in increasing order of value.
Expand Down
4 changes: 4 additions & 0 deletions exercises/practice/series/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Instructions append

## Track specific instructions

Implement a function called `slices` that returns an array of strings as described above.
Your function should throw an `IllegalArgumentError` with an appropriate error message as following.
- If the given string is empty, error with message `series cannot be empty`.
Expand Down
4 changes: 4 additions & 0 deletions exercises/practice/two-fer/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Instructions append

## Track specific instructions

Your task is to implement a function, called `twoFer`, which implements the behavior described above.
4 changes: 4 additions & 0 deletions exercises/practice/yacht/.docs/instruction.append.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Instructions append

## Track specific instructions

The function to implement should be called `score`.
Loading