|
@@ -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 values between `0` and `stop` exclusively.
|
|
18
|
+ * Given an integer, `stop`, return a `String` concatenation of all integers between `0` and `stop` exclusively.
|
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 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
|
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 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
|
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 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
|
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 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
|
152
|
### Example
|
153
|
153
|
* Sample Script
|
154
|
154
|
|