1
給出兩個字符串,每個字符串代表善良或邪惡雙方的成員,找出哪一方會勝利。比較運算符沒有返回正確值
良好:霍比特 - 1,男性 - 2,精靈 - 3,矮人 - 3,鷹 - 4,奇才 - 10
危機:獸族 - 1,男性 - 2,Wargs - 2,地精 - 2 ,Uruk Hai - 3,Trolls - 5,奇才 - 10
我寫了一個函數來確定哪一方會贏。它大部分時間都適用,但有時它表現奇怪。
function goodVsEvil(good, evil){
//string to array good and array evil in integers
var aG = good.split(" ").map(x=>parseInt(x))
var aE = evil.split(" ").map(x=>parseInt(x))
//calculate final score good and final score evil
var fSG = aG[0]*1 + aG[1]*2 + aG[2]*3 + aG[3]*3 + aG[4]*4 + aG[5]*10
var fSE = aE[0]*1 + aE[1]*2 + aE[2]*2 + aE[3]*2 + aE[4]*3 + aE[5]*5 + aE[5]*10
console.log('equals: '+ (fSG == fSE))
console.log('good > evil: '+(fSG > fSE))
console.log('good < evil: '+(fSG < fSE))
}
一些錯誤情況:
var result = goodVsEvil('1 0 0 0 1 0', '0 0 0 0 0 1 0')
//output
good: 5
evil: 5
equals: false
good > evil: false
good < evil: true
另:
good: 10
evil: 10
equals: false
good > evil: false
good < evil: true
另:
good: 2
evil: 2
equals: false
good > evil: true
good < evil: false
在這裏,它的正常工作
var result = goodVsEvil('1 1 0 0 0 0', '0 0 0 0 1 0 0')
good: 3
evil: 3
equals: true
good > evil: false
good < evil: false
這個謎題是從codewars:https://www.codewars.com/kata/good-vs-evil/train/javascript
該死!太愚蠢了...... *嘆* –