반응형
정의
프로그래밍 문제에서 inclusive/exclusive는 숫자 범위를 의미합니다.
Inclusive - 가장 마지막 번호를 포함한다
Exclusive - 가장 마지막 번호를 포함하지 않는다
Example
inclusive
If a function will compute $2^i$ where $i = 1, 2, ..., n$.
$i$ can have values from 1 up to and including the value n
.
이 뜻은 마지막 숫자를 포함합니다.
1 through 10 (inclusive) = [1, 10]
1 2 3 4 5 6 7 8 9 10
exclusive
If a function will compute $2^i$ where $i = 1, 2, ..., n$i
can have values from 1 up to and excluding the value n
.
이 뜻은 마지막 숫자를 포함하지 않습니다.
1 through 10 (exclusive) = [1, 10)
1 2 3 4 5 6 7 8 9
1 through 10 (exclusive) = [1, 10) 1 2 3 4 5 6 7 8 9
반응형
'old > Programming' 카테고리의 다른 글
[Java 예외]IllegalArgumentException 대처법 (0) | 2021.08.24 |
---|---|
[java코드]노드 리버스 (0) | 2021.08.20 |
windows 10에 git 설치하기 (2) | 2021.04.21 |
Hugo로 개인 블로그 만드는 법-9.사진 크기 조정 (0) | 2021.04.17 |
Hugo로 개인 블로그 만드는 법-8.코드 블럭 버튼 추가 (0) | 2021.04.17 |