2020 * '', 'bb' => 'bb'
2121 */
2222export function concatenateStrings ( value1 , value2 ) {
23- /* implement your code here */
2423 throw new Error ( 'Not implemented' ) ;
2524}
2625
@@ -36,7 +35,6 @@ export function concatenateStrings(value1, value2) {
3635 * '' => 0
3736 */
3837export function getStringLength ( value ) {
39- /* implement your code here */
4038 throw new Error ( 'Not implemented' ) ;
4139}
4240
@@ -54,7 +52,6 @@ export function getStringLength(value) {
5452 * 'Chuck','Norris' => 'Hello, Chuck Norris!'
5553 */
5654export function getStringFromTemplate ( firstName , lastName ) {
57- /* implement your code here */
5855 throw new Error ( 'Not implemented' ) ;
5956}
6057
@@ -69,7 +66,6 @@ export function getStringFromTemplate(firstName, lastName) {
6966 * 'Hello, Chuck Norris!' => 'Chuck Norris'
7067 */
7168export function extractNameFromTemplate ( value ) {
72- /* implement your code here */
7369 throw new Error ( 'Not implemented' ) ;
7470}
7571
@@ -85,7 +81,6 @@ export function extractNameFromTemplate(value) {
8581 * 'cat' => 'c'
8682 */
8783export function getFirstChar ( value ) {
88- /* implement your code here */
8984 throw new Error ( 'Not implemented' ) ;
9085}
9186
@@ -101,7 +96,6 @@ export function getFirstChar(value) {
10196 * '\tHello, World! ' => 'Hello, World!'
10297 */
10398export function removeLeadingAndTrailingWhitespaces ( value ) {
104- /* implement your code here */
10599 throw new Error ( 'Not implemented' ) ;
106100}
107101
@@ -117,7 +111,6 @@ export function removeLeadingAndTrailingWhitespaces(value) {
117111 * 'cat', 3 => 'catcatcat'
118112 */
119113export function repeatString ( value , count ) {
120- /* implement your code here */
121114 throw new Error ( 'Not implemented' ) ;
122115}
123116
@@ -134,7 +127,6 @@ export function repeatString(value, count) {
134127 * 'ABABAB','BA' => 'ABAB'
135128 */
136129export function removeFirstOccurrences ( str , value ) {
137- /* implement your code here */
138130 throw new Error ( 'Not implemented' ) ;
139131}
140132
@@ -150,7 +142,6 @@ export function removeFirstOccurrences(str, value) {
150142 * '<a>' => 'a'
151143 */
152144export function unbracketTag ( str ) {
153- /* implement your code here */
154145 throw new Error ( 'Not implemented' ) ;
155146}
156147
@@ -166,7 +157,6 @@ export function unbracketTag(str) {
166157 * 'abcdefghijklmnopqrstuvwxyz' => 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
167158 */
168159export function convertToUpperCase ( str ) {
169- /* implement your code here */
170160 throw new Error ( 'Not implemented' ) ;
171161}
172162
@@ -182,7 +172,6 @@ export function convertToUpperCase(str) {
182172 * 'info@gmail.com' => ['info@gmail.com']
183173 */
184174export function extractEmails ( str ) {
185- /* implement your code here */
186175 throw new Error ( 'Not implemented' ) ;
187176}
188177
@@ -210,7 +199,6 @@ export function extractEmails(str) {
210199 *
211200 */
212201export function getRectangleString ( width , height ) {
213- /* implement your code here */
214202 throw new Error ( 'Not implemented' ) ;
215203}
216204
@@ -232,7 +220,6 @@ export function getRectangleString(width, height) {
232220 *
233221 */
234222export function encodeToRot13 ( str ) {
235- /* implement your code here */
236223 throw new Error ( 'Not implemented' ) ;
237224}
238225
@@ -250,7 +237,6 @@ export function encodeToRot13(str) {
250237 * isString(new String('test')) => true
251238 */
252239export function isString ( value ) {
253- /* implement your code here */
254240 throw new Error ( 'Not implemented' ) ;
255241}
256242
@@ -280,6 +266,5 @@ export function isString(value) {
280266 * 'K♠' => 51
281267 */
282268export function getCardId ( value ) {
283- /* implement your code here */
284269 throw new Error ( 'Not implemented' ) ;
285270}
0 commit comments