function Find(target, array) {
    // write code here
    for (i = 0; i < array.length; i++) {
        if (array[i].indexOf(target) != -1) {
            return true;
        }
    }
    return false;
}
module.exports = {
    Find: Find,
};