Skip to content

Commit c1c5f0e

Browse files
committed
Change Pointers to Guidelines
1 parent 28fba36 commit c1c5f0e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

chapter-03-simple-conditions.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ We are given an **integer** – several points. Additional **bonus points** are
243243
| 2703 | 270.3<br>2973.3 |
244244
| 15875 | 1589.5<br>17464.5 |
245245

246-
#### Hints and Pointers
246+
#### Hints and Guidelines
247247

248248
We can calculate the base and additional bonus score with a series of **`if-else-if-else`** statements. for the **main bonus points we have 3 cases** (the input is less than or equal to 100, it is between 100 and 1000, and finally it is greater than 1000), for the **additional bonus sore - further 2 cases** (whether the number is even or odd and whether the remainder of division by 5 is 5).
249249

@@ -273,7 +273,7 @@ Three athletes finish with some **number of seconds** (between **1** and **50**)
273273
| 50<br>50<br>49 | 2:29 |
274274
| 14<br>12<br>10 | 0:36 |
275275

276-
#### Hints and Pointers
276+
#### Hints and Guidelines
277277

278278
Firstly we sum the three numbers, to obtain the seconds total. As we know that **1 minute = 60 seconds**, we should calculate the minutes and seconds in the range 0 to 59:
279279
- If the result is between 0 and 59, we print 0 minutes + calculated seconds.
@@ -316,7 +316,7 @@ The input will be three parameters:
316316
| 150 <br>mi <br>in | 9503999.99393599 |
317317
| 450 <br>yd <br>km | 0.41147999937455 |
318318

319-
#### Hints and pointers
319+
#### Hints and Guidelines
320320

321321
We take the input data and to the units of measure, we can add the method **`toLowerCase()`**, which will convert all letters to lower case. As we can see from the conversion table above, we have data for **converting only between meters and any other measuring unit**. To make the conversion, firstly we must calculate the input measurement in meters. To this effect, we need to create a set of conditionals to determine the input measuring unit and then the output.
322322

@@ -353,7 +353,7 @@ Write a function that **accepts a password** (one line of random text) and check
353353
| s3cr3t!P@ssw0rd | Welcome |
354354
| s3cr3t!p@ss | Wrong password! |
355355

356-
#### Hints and Pointers
356+
#### Hints and Guidelines
357357

358358
Use an **`if-else`** statement.
359359

@@ -394,7 +394,7 @@ Write a function that **accepts two words** as parameters and checks if they are
394394
| beer<br>vodka | no |
395395
| HeLlO<br>hELLo | yes |
396396

397-
#### Hints and Pointers
397+
#### Hints and Guidelines
398398

399399
Before the comparison, both words should be in lower case, so that case (uppercase / lowercase) does not influence the result: **`word = word.toLowerCase()`**.
400400

@@ -462,7 +462,7 @@ Write a function that takes **two parameters - hours and minutes** based on a 24
462462
| 11<br>08 | 11:23 |
463463
| 12<br>49 | 13:04 |
464464

465-
#### Hints and Pointers
465+
#### Hints and Guidelines
466466

467467
Add 15 minutes and check using a set of conditions. If minutes are over 59 **increase the hours** by 1 and **decrease the minutes** by 60. You may handle the case when hours are over 23 similarly. Take care when printing the minutes to add a **leading zero** where appropriate.
468468

@@ -500,7 +500,7 @@ Write a function that converts numbers in the range of [**0 … 100**] in text.
500500
| 42 | forty two |
501501
| 6 | six |
502502

503-
#### Hints and pointers
503+
#### Hints and Guidelines
504504

505505
Firstly you should check for **single-digit numbers** and if this is the case, print the corresponding word. Then you can check if the number is a **double-digit number**. These can be printed in two parts: left part (**tens** = number / 10) and right part (**units** = number % 10). If the number has three digits, then it must be 100 and this can be handled as a special case.
506506

0 commit comments

Comments
 (0)