From 6bbf6d77d5c5c8eb9d9bd8c2a8b3c76e977a7a9f Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 1 Dec 2023 15:52:57 +0900 Subject: [PATCH] =?UTF-8?q?#1722=20random-min-max=20=EA=B3=BC=EC=A0=9C=20?= =?UTF-8?q?=EB=B2=88=EC=97=AD=206,=208=EB=B2=88=EC=A7=B8=20=EC=A4=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1-js/05-data-types/02-number/8-random-min-max/solution.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/05-data-types/02-number/8-random-min-max/solution.md b/1-js/05-data-types/02-number/8-random-min-max/solution.md index 8736c3d561..21aa632b89 100644 --- a/1-js/05-data-types/02-number/8-random-min-max/solution.md +++ b/1-js/05-data-types/02-number/8-random-min-max/solution.md @@ -3,9 +3,9 @@ We need to "map" all values from the interval 0..1 into values from `min` to `ma That can be done in two stages: 1. If we multiply a random number from 0..1 by `max-min`, then the interval of possible values increases `0..1` to `0..max-min`. -2. Now if we add `min`, the possible interval becomes from `min` to `max`. +2. 이제 `min`을 더하면 `min`에서 `max`가 됩니다. -The function: +함수 : ```js run function random(min, max) {