This question真的很困扰我!
我原来的解决方案看起来像这样:
function f(){
return String.fromCharCode(72,101,108,108,111,44,32,119,111,114,108,100,33);
}
我得到的错误是Your solution uses o letter
我的想法是,o
中有fromCharCode
,但我also tried generating "Hello, world!"
here以确保函数中没有o
,但是,我看到了同样的错误。
任何人都可以发现我可能遗失的任何傻事吗?
答案 0 :(得分:0)
这有效:
f = () => '\x48\x65\x6C\x6C\x6F\x2C\x20\x77\x6F\x72\x6C\x64\x21';
时间:362ms通过:102失败:0
测试结果:
测试通过:值==' Hello,world!'
您的解决方案中的禁止字母检查
你好世界有没有来信?
2ms完成
一些随机测试会很好。
随机测试(100个断言中的100个)
在22毫秒内完成
您已通过所有测试! :)
答案 1 :(得分:-1)
功能正常。 请找到工作样本: https://jsfiddle.net/L6qh89b1/
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script>
function f(){
return String.fromCharCode(72,101,108,108,111,44,32,119,111,114,108,100,33);
}
document.write(f());
</script>
</head>
<body>
</body>
</html>