
strs 순회str[i]가 숫자가 아닌 문자를 포함하는지 확인function maximumValue(strs: string[]): number {
let max = -Infinity
for(const str of strs) {
const includeStr = str.match(/[^\d]+/g)
let curVal = 0
if(includeStr) {
curVal = str.length
} else {
curVal = Number(str)
}
max = Math.max(max, curVal)
}
return max
};