[プログラマ]中間文字を入力
472 ワード
中間文字を入力
に答える
function solution(string) {
if (string.length % 2 === 0) {
const half = string.length / 2;
return string[half - 1] + string[half];
} else {
const half = string.length / 2;
return string[Math.floor(half)];
}
}
console.log(solution("abcde"));
console.log(solution("qwer"));
Reference
この問題について([プログラマ]中間文字を入力), 我々は、より多くの情報をここで見つけました
https://velog.io/@elena_park/프로그래머스-가운데-글자-가져오기
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
function solution(string) {
if (string.length % 2 === 0) {
const half = string.length / 2;
return string[half - 1] + string[half];
} else {
const half = string.length / 2;
return string[Math.floor(half)];
}
}
console.log(solution("abcde"));
console.log(solution("qwer"));
Reference
この問題について([プログラマ]中間文字を入力), 我々は、より多くの情報をここで見つけました https://velog.io/@elena_park/프로그래머스-가운데-글자-가져오기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol