[Java Script]「ソウルで金婿を探す」
1427 ワード
1.問題の説明
String型配列seoulの要素でKimの位置xを見つけ,金婿はxでStringの関数を返し,解を完了する.seoulではKimは一度しか現れず,誤った値は入力されなかった.
2.制限
3.I/O例
4.解決方法
seoul配列にKIMがある場合は、その値のインデックスを返します.function solution(seoul) {
for (let i=0; i<seoul.length; i++) {
if(seoul[i] == "Kim") {
return `김서방은 ${i}에 있다`
}
}
}
5.もう一つの解決方法は?(秋莱秋莱)
1. array.prototype.indexOf()
function solution(seoul) {
const indexKim = seoul.indexOf("Kim");
return `김서방은 ${indexKim}에 있다`
}
2. array.prototype.findIndex()
:findIndexメソッドは、配列で指定された関数条件を満たす最初のインデックスを返します.満足できる要因がない場合は、-1を返します.
The findIndex() method returns the index of the first element in the array that satisfies the provided testing function. Otherwise, it returns -1, indicating that no element passed the testfunction solution(seoul) {
const indexKim = seoul.findIndex(x => x == "Kim");
return `김서방은 ${indexKim}에 있다`
}
cf) array.prototype.find() : the find() method, which returns the value of an array element, instead of its index.
Reference
この問題について([Java Script]「ソウルで金婿を探す」), 我々は、より多くの情報をここで見つけました
https://velog.io/@soor/Java-Script-서울에서-김서방-찾기
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
seoul配列にKIMがある場合は、その値のインデックスを返します.
function solution(seoul) {
for (let i=0; i<seoul.length; i++) {
if(seoul[i] == "Kim") {
return `김서방은 ${i}에 있다`
}
}
}
5.もう一つの解決方法は?(秋莱秋莱)
1. array.prototype.indexOf()
function solution(seoul) {
const indexKim = seoul.indexOf("Kim");
return `김서방은 ${indexKim}에 있다`
}
2. array.prototype.findIndex()
:findIndexメソッドは、配列で指定された関数条件を満たす最初のインデックスを返します.満足できる要因がない場合は、-1を返します.
The findIndex() method returns the index of the first element in the array that satisfies the provided testing function. Otherwise, it returns -1, indicating that no element passed the testfunction solution(seoul) {
const indexKim = seoul.findIndex(x => x == "Kim");
return `김서방은 ${indexKim}에 있다`
}
cf) array.prototype.find() : the find() method, which returns the value of an array element, instead of its index.
Reference
この問題について([Java Script]「ソウルで金婿を探す」), 我々は、より多くの情報をここで見つけました
https://velog.io/@soor/Java-Script-서울에서-김서방-찾기
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
function solution(seoul) {
const indexKim = seoul.indexOf("Kim");
return `김서방은 ${indexKim}에 있다`
}
function solution(seoul) {
const indexKim = seoul.findIndex(x => x == "Kim");
return `김서방은 ${indexKim}에 있다`
}
Reference
この問題について([Java Script]「ソウルで金婿を探す」), 我々は、より多くの情報をここで見つけました https://velog.io/@soor/Java-Script-서울에서-김서방-찾기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol