|
|
|
|
15
|
<br><br><br><br>
|
15
|
<br><br><br><br>
|
16
|
## `String getRange(int stop)`
|
16
|
## `String getRange(int stop)`
|
17
|
* **Description**
|
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
|
### Example
|
19
|
### Example
|
20
|
* Sample Script
|
20
|
* Sample Script
|
21
|
|
21
|
|
|
|
|
|
49
|
<br><br><br><br>
|
49
|
<br><br><br><br>
|
50
|
## `String getRange(int start, int stop)`
|
50
|
## `String getRange(int start, int stop)`
|
51
|
* **Description**
|
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
|
### Example
|
53
|
### Example
|
54
|
* Sample Script
|
54
|
* Sample Script
|
55
|
|
55
|
|
|
|
|
|
80
|
<br><br><br><br>
|
80
|
<br><br><br><br>
|
81
|
## `String getRange(int start, int stop, int step)`
|
81
|
## `String getRange(int start, int stop, int step)`
|
82
|
* **Description**
|
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
|
### Example
|
84
|
### Example
|
85
|
* Sample Script
|
85
|
* Sample Script
|
86
|
|
86
|
|
|
|
|
|
120
|
<br><br><br><br>
|
120
|
<br><br><br><br>
|
121
|
## `String getEvenNumbers(int start, int stop)`
|
121
|
## `String getEvenNumbers(int start, int stop)`
|
122
|
* **Description**
|
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
|
### Example
|
124
|
### Example
|
125
|
* Sample Script
|
125
|
* Sample Script
|
126
|
|
126
|
|
|
|
|
|
148
|
<br><br><br><br>
|
148
|
<br><br><br><br>
|
149
|
## `String getOddNumbers(int start, int stop)`
|
149
|
## `String getOddNumbers(int start, int stop)`
|
150
|
* **Description**
|
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
|
### Example
|
152
|
### Example
|
153
|
* Sample Script
|
153
|
* Sample Script
|
154
|
|
154
|
|
|
|
|
|
189
|
<br><br><br><br>
|
189
|
<br><br><br><br>
|
190
|
## `String getSquareNumbers(int start, int stop)`
|
190
|
## `String getSquareNumbers(int start, int stop)`
|
191
|
* **Description**
|
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
|
### Example
|
193
|
### Example
|
194
|
* Sample Script
|
194
|
* Sample Script
|
195
|
|
195
|
|
|
|
|
|
226
|
<br><br><br><br>
|
226
|
<br><br><br><br>
|
227
|
## `String getExponentiations(int start, int stop, int step, int exponent)`
|
227
|
## `String getExponentiations(int start, int stop, int step, int exponent)`
|
228
|
* **Description**
|
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
|
### Example
|
230
|
### Example
|
231
|
* Sample Script
|
231
|
* Sample Script
|
232
|
|
232
|
|