Skip to content

Commit 6f0bc0d

Browse files
cocoa-salonViolet-Bora-Lee
authored andcommitted
#1717 random-min-max solution 번역 5번째 줄 수정
1 parent 5e1d641 commit 6f0bc0d

File tree

1 file changed

+1
-1
lines changed
  • 1-js/05-data-types/02-number/8-random-min-max

1 file changed

+1
-1
lines changed

1-js/05-data-types/02-number/8-random-min-max/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ We need to "map" all values from the interval 0..1 into values from `min` to `ma
22

33
이 작업은 두 단계로 이루어집니다.
44

5-
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`.
5+
1. 0과 1 사이의 임의의 숫자에 `max-min`를 곱하면 가능한 값의 간격이 `0..1`에서 `0..max-min`으로 증가합니다.
66
2. Now if we add `min`, the possible interval becomes from `min` to `max`.
77

88
The function:

0 commit comments

Comments
 (0)