我再次遇到了一些CodeWars挑战。
我对此有疑问:
“给出一串单词,您需要找到得分最高的单词。
每个单词的字母根据其在字母表中的位置得分:a = 1,b = 2,c = 3等。
您需要将得分最高的单词作为字符串返回。
如果两个单词得分相同,则返回最早出现在原始字符串中的单词。
所有字母均为小写,且所有输入均有效。”
我已经在SO上查找了解决方案,并使用了一个人的想法(尽管我做了一点改动)。
它仍然不起作用。
有什么想法吗?
object Scoring {
def high(s: String): String = {
var max = 0
var whichWord = 0
var x = 0
var y = new Array[Int](100)
for(word <- s.split(" ")){
for(letter <- word) letter match{
case 'a' => y(x)+=1
case 'b' => y(x)+=2
case 'c' => y(x)+=3
case 'd' => y(x)+=4
case 'e' => y(x)+=5
case 'f' => y(x)+=6
case 'g' => y(x)+=7
case 'h' => y(x)+=8
case 'i' => y(x)+=9
case 'j' => y(x)+=10
case 'k' => y(x)+=11
case 'l' => y(x)+=12
case 'm' => y(x)+=13
case 'n' => y(x)+=14
case 'o' => y(x)+=15
case 'p' => y(x)+=16
case 'q' => y(x)+=17
case 'r' => y(x)+=18
case 's' => y(x)+=19
case 't' => y(x)+=20
case 'u' => y(x)+=21
case 'v' => y(x)+=22
case 'w' => y(x)+=23
case 'x' => y(x)+=24
case 'y' => y(x)+=25
case 'z' => y(x)+=26
}
x +=1
}
for(x <- 0 until y.length){
if(y(x) > max)
{
max = y(x)
whichWord = x
}
}
s.substring(whichWord-1, whichWord)
}
}
以下是测试:
测试结果:
RandomTestSpec
high("ykvhorsqve kfkq jhjibercdptf efevxax ccr vnsmumqby jwhxvamegupfcj lierziuopbcsutm") should return "lierziuopbcsutm"
Test Failed
"[s]" was not equal to "[lierziuopbcsutm]"
Stack Trace
Completed in 34ms
high("skwwwm") should return "skwwwm"
Test Failed
String index out of range: -1
Stack Trace
Completed in 1ms
high("a") should return "a"
Test Failed
String index out of range: -1
Stack Trace
Completed in 1ms
high("gykoialocufuc wcdwuxksqk bvapztcnqwx") should return "bvapztcnqwx"
Test Failed
"[y]" was not equal to "[bvapztcnqwx]"
Stack Trace
Completed in 1ms
high("gdhfoonwtih xbvsiaqhsesl obrndpz nxt inkklyo lf oyoadxqhuys lbqr oxbqq bopalqknjxvpg") should return "oyoadxqhuys"
Test Failed
"o[]" was not equal to "o[yoadxqhuys]"
Stack Trace
Completed in 1ms
high("bbzlmqhsypato pfufsi ryu oboklfa iigha h m") should return "bbzlmqhsypato"
Test Failed
String index out of range: -1
Stack Trace
Completed in 1ms
high("dbtfwvhk kadarmvldjhkx dgxffryldcxodtn hoffibiayxriqe gtqzeuywpgc nqlgvudy") should return "dgxffryldcxodtn"
Test Failed
"[b]" was not equal to "[dgxffryldcxodtn]"
Stack Trace
Completed in 1ms
high("vhyxdefryeznlkz fcaenzsnoxsn phdqu zjbbbybjmdn dbfhvxwnusz dqbqskfbwuomzsl ogsdioilk") should return "vhyxdefryeznlkz"
Test Failed
String index out of range: -1
Stack Trace
high("yqbzfuprmezbgee yxsewucg u") should return "yqbzfuprmezbgee"
Test Failed
String index out of range: -1
Stack Trace
Completed in 1ms
high("zifha") should return "zifha"
Test Failed
String index out of range: -1
Stack Trace
high("moroydyolj tcfpokvitzwzor rnzeacau") should return "tcfpokvitzwzor"
Test Failed
"[m]" was not equal to "[tcfpokvitzwzor]"
Stack Trace
Completed in 1ms
high("jhieih m") should return "jhieih"
Test Failed
String index out of range: -1
Stack Trace
high("yn ounbzw wk eldpjyikbfs nzm") should return "eldpjyikbfs"
Test Failed
"[ ]" was not equal to "[eldpjyikbfs]"
Stack Trace
Completed in 1ms
答案 0 :(得分:3)
在Scala中,更容易(更好)使用集合中提供的功能。
在您的示例中-一种可能:
首先添加得分,您可以使用以下方法:
"hello".map(_.toInt).sum // 532
这将所有字符的总和返回为Int值(a = 97; ...; z = 122)
要找到最大的重量,可以使用foldLeft
,从“”开始。
scala> List("a", "ab","ba").foldLeft("")((a,b)=> higher(a,b))
res10: String = ab
这是完整的higher
功能:
def higher(a:String, b:String):String=
if(a.map(_.toInt).sum >= b.map(_.toInt).sum) a else b
使用收集功能可以实现许多很酷的可能性-请勿使用可变状态!这是切换到Scala的重要原因。
更新:在玩过https://www.codewars.com之后,我发现了一个错误和一个较短的解决方案:
s.split(" ").map(w => (w, w.map(_.toInt - 96).sum)).maxBy(_._2)._1
答案 1 :(得分:2)
假设您输入的是
val str = "ykvhorsqve kfkq jhjibercdptf efevxax ccr vnsmumqby jwhxvamegupfcj lierziuopbcsutm"
您可以维护一个映射,其中每个字符的值为
val charMap = Map(
'a' -> 1,
'b' -> 2,
'c' -> 3,
'd' -> 4,
'e' -> 5,
'f' -> 6,
'g' -> 7,
'h' -> 8,
'i' -> 9,
'j' -> 10,
'k' -> 11,
'l' -> 12,
'm' -> 13,
'n' -> 14,
'o' -> 15,
'p' -> 16,
'q' -> 17,
'r' -> 18,
's' -> 19,
't' -> 20,
'u' -> 21,
'v' -> 22,
'w' -> 23,
'x' -> 24,
'y' -> 25,
'z' -> 26,
)
然后您可以添加一个简单的函数来计算每个单词的计数
def countOfWord(str : String): Int = str.map(charMap).sum
然后在您的输入字符串str
上执行以下操作将为您带来所需的结果
str.split(" ").map(word => (word, countOfWord(word))).maxBy(_._2)._1
这将为您获取所需的输出
res0: String = lierziuopbcsutm
答案 2 :(得分:1)
val words = s.split(" ")
val scores = words.map(w => (w, w.map(_ - 'a' + 1).sum))
val max = scores.maxBy(_._2)._2
scores.find(_._2 == max).get._1
答案 3 :(得分:1)
那呢?
object HighestWord extends App {
val inputStr: String = "ykvhorsqve kfkq jhjibercdptf efevxax ccr vnsmumqby jwhxvamegupfcj lierziuopbcsutm"
val answer = inputStr.split(" ").map {
str: String =>
val sum = str.map { chr: Char =>
chr.toInt
}.sum
(str, sum)
}.maxBy(_._2)._1
println(answer)
}