feat: teach the camper to look at the browser console (#54905)

This commit is contained in:
Ilenia
2024-05-21 18:36:32 +02:00
committed by GitHub
parent 4313bd22cd
commit ba8ca2a0b4
5 changed files with 9 additions and 0 deletions

View File

@@ -77,6 +77,8 @@ Percentage spent by category
g
```
Note: open the browser console with F12 to see a more verbose output of the tests.
# --hints--
The `deposit` method should create a specific object in the ledger instance variable.

View File

@@ -75,6 +75,8 @@ Square(side=4)
8
```
Note: open the browser console with F12 to see a more verbose output of the tests.
# --hints--
The `Square` class should be a subclass of the `Rectangle` class.

View File

@@ -55,6 +55,7 @@ Since this is based on random draws, the probability will be slightly different
_Hint: Consider using the modules that are already imported at the top. Do not initialize random seed within the file._
Note: open the browser console with F12 to see a more verbose output of the tests.
# --hints--

View File

@@ -44,6 +44,8 @@ add_time('6:30 PM', '205:12')
Do not import any Python libraries. Assume that the start times are valid times. The minutes in the duration time will be a whole number less than 60, but the hour can be any whole number.
Note: open the browser console with F12 to see a more verbose output of the tests.
# --hints--
Calling `add_time('3:30 PM', '2:12')` should return `'5:42 PM'`.

View File

@@ -68,6 +68,8 @@ The function will return the correct conversion if the supplied problems are pro
- There should be four spaces between each problem.
- There should be dashes at the bottom of each problem. The dashes should run along the entire length of each problem individually. (The example above shows what this should look like.)
Note: open the browser console with F12 to see a more verbose output of the tests.
# --hints--
`arithmetic_arranger(["3801 - 2", "123 + 49"])` should return ` 3801 123\n- 2 + 49\n------ -----`.