|
|
|
|
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 values between `0` and `stop` exclusively.
|
|
|
|
|
18
|
+ * Given an integer, `stop`, return a `String` concatenation of all integers between `0` and `stop` exclusively.
|
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 values between `start` and `stop` exclusively.
|
|
|
|
|
52
|
+ * Given two integers, `start`, and `stop`, return a `String` concatenation of all integers between `start` and `stop` exclusively.
|
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 values 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` and `stop` exclusively incrementing by `step`.
|
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 values between `start` and `stop` exclusively.
|
|
|
|
|
123
|
+ * Given two integers, `start`, and `stop`, return a `String` concatenation of all even integers between `start` and `stop` exclusively.
|
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 values between `start` and `stop` exclusively.
|
|
|
|
|
151
|
+ * Given two integers, `start`, and `stop`, return a `String` concatenation of all even integers between `start` and `stop` exclusively.
|
152
|
### Example
|
152
|
### Example
|
153
|
* Sample Script
|
153
|
* Sample Script
|
154
|
|
154
|
|