|
@@ -15,7 +15,7 @@
|
15
|
15
|
<br><br><br><br>
|
16
|
16
|
## `String getRange(int stop)`
|
17
|
17
|
* **Description**
|
18
|
|
- * Given an integer, `stop`, return a `String` concatenation of all integers between `0` and `stop` exclusively.
|
|
18
|
+ * Given an integer, `stop`, return a `String` concatenation of all integers between `0` up to and not including `stop`.
|
19
|
19
|
### Example
|
20
|
20
|
* Sample Script
|
21
|
21
|
|
|
@@ -49,7 +49,7 @@
|
49
|
49
|
<br><br><br><br>
|
50
|
50
|
## `String getRange(int start, int stop)`
|
51
|
51
|
* **Description**
|
52
|
|
- * Given two integers, `start`, and `stop`, return a `String` concatenation of all integers between `start` and `stop` exclusively.
|
|
52
|
+ * Given two integers, `start`, and `stop`, return a `String` concatenation of all integers between `start` up to and not including `stop`.
|
53
|
53
|
### Example
|
54
|
54
|
* Sample Script
|
55
|
55
|
|
|
@@ -80,7 +80,7 @@
|
80
|
80
|
<br><br><br><br>
|
81
|
81
|
## `String getRange(int start, int stop, int step)`
|
82
|
82
|
* **Description**
|
83
|
|
- * Given three integers, `start`, `stop`, and `step` return a `String` concatenation of all integers between `start` and `stop` exclusively incrementing by `step`.
|
|
83
|
+ * Given three integers, `start`, `stop`, and `step` return a `String` concatenation of all integers between `start` up to and not including `stop`.
|
84
|
84
|
### Example
|
85
|
85
|
* Sample Script
|
86
|
86
|
|
|
@@ -120,7 +120,7 @@
|
120
|
120
|
<br><br><br><br>
|
121
|
121
|
## `String getEvenNumbers(int start, int stop)`
|
122
|
122
|
* **Description**
|
123
|
|
- * Given two integers, `start`, and `stop`, return a `String` concatenation of all even integers between `start` and `stop` exclusively.
|
|
123
|
+ * Given two integers, `start`, and `stop`, return a `String` concatenation of all even integers between `start` up to and not including `stop`.
|
124
|
124
|
### Example
|
125
|
125
|
* Sample Script
|
126
|
126
|
|
|
@@ -148,7 +148,7 @@
|
148
|
148
|
<br><br><br><br>
|
149
|
149
|
## `String getOddNumbers(int start, int stop)`
|
150
|
150
|
* **Description**
|
151
|
|
- * Given two integers, `start`, and `stop`, return a `String` concatenation of all even integers between `start` and `stop` exclusively.
|
|
151
|
+ * Given two integers, `start`, and `stop`, return a `String` concatenation of all even integers between `start` up to and not including `stop`.
|
152
|
152
|
### Example
|
153
|
153
|
* Sample Script
|
154
|
154
|
|
|
@@ -189,7 +189,7 @@
|
189
|
189
|
<br><br><br><br>
|
190
|
190
|
## `String getSquareNumbers(int start, int stop)`
|
191
|
191
|
* **Description**
|
192
|
|
- * Given two integers, `start`, and `stop`, return a `String` concatenation of all values squared between `start` and `stop` exclusively.
|
|
192
|
+ * Given two integers, `start`, and `stop`, return a `String` concatenation of all values squared between `start` up to and not including `stop`.
|
193
|
193
|
### Example
|
194
|
194
|
* Sample Script
|
195
|
195
|
|
|
@@ -226,7 +226,7 @@
|
226
|
226
|
<br><br><br><br>
|
227
|
227
|
## `String getExponentiations(int start, int stop, int step, int exponent)`
|
228
|
228
|
* **Description**
|
229
|
|
- * Given four integers, `start`, `stop`, `step`, and `exponent`, return a `String` concatenation of all values, raised to the specified `exponent`, between `start` and `stop` exclusively, incrementing by the specified `step`.
|
|
229
|
+ * Given four integers, `start`, `stop`, `step`, and `exponent`, return a `String` concatenation of all values, raised to the specified `exponent`, between `start` up to and not including `stop`, incrementing by the specified `step`.
|
230
|
230
|
### Example
|
231
|
231
|
* Sample Script
|
232
|
232
|
|