Description

Instructions

Given an array (arr) as an argument complete the function countSmileys that should return the total number of smiling faces.

Rules for a smiling face:

  • Each smiley face must begin with a valid pair of eyes. Eyes can be marked as : or ;
  • A smiley face can have a nose but it does not have to. Valid characters for a nose are - or ~
  • Every smiling face must end with a smiling mouth that should be marked with either ) or D
  • No additional characters are allowed except for those mentioned.

Valid smiley face examples: :) :D ;-D :~) Invalid smiley faces: ;( :> :} :]

Example

countSmileys([':)', ';(', ';}', ':-D']);       // should return 2;
countSmileys([';D', ':-(', ':-)', ';~)']);     // should return 3;
countSmileys([';]', ':[', ';*', ':$', ';-D']); // should return 1;

Note

In case of an empty array return 0. You will not be tested with invalid input (input will always be an array). Order of the face (eyes, nose, mouth) elements will always be the same.

Solutions

R

library(tidyverse)
countSmileys <- function(array) {
    # str_detect() 支持向量化操作
    str_detect(array, "[:;][-~]?[)D]") %>%
        sum()
}


library(testthat)
test_that("Sample Tests", {
    expect_equal(countSmileys(c(":)", ";(", ";}", ":-D")), 2)
    expect_equal(countSmileys(c(";D", ":-(", ":-)", ";~)")), 3)
    expect_equal(countSmileys(c(";]", ":[", ";*", ":$", ";-D")), 1)
})
#> Test passed 🎊

JavaScript


/**
 * smiley face checker
 * @param {String} str 
 * @returns {Boolean} the parameter is a smiley face or not
 */
function isSmileyFace(str) {
  return /^[:;][-~]?[)D]/.test(str);
}

/**
 * smiley face counter
 * @param {Arrary} arr string array
 * @returns {integer} total number of smiling faces in the array
 */
function countSmileys(arr) {
  return arr.filter(isSmileyFace).length;
}

module.exports = countSmileys;