#! /usr/bin/env bash

########################################################
#
#
########################################################
function solution_2() {
    local num=0
    while read line; do
        if [[ "${line}" =~ ^[^0-9]*[0-9]{1}[^0-9]*$ ]]; then
            echo "${line}"
        fi
    done < nowcoder.txt
}

solution_2