颇有意思的一道题

题目内容

The test fixture I use for this kata is pre-populated.javascript

It will compare your guess to a random number generated using:java

Math.floor(Math.random() * 100 + 1)

You can pass by relying on luck or skill but try not to rely on luck.dom

"The power to define the situation is the ultimate power." - Jerry Rubinthis

Good luck!code

答题区

var guess = 0; //编写这部份内容以知足以下的test

验证区

//This is exactly what the real test fixture looks like.
var lucky_number = Math.floor(Math.random() * 100 + 1);
Test.assertEquals(guess, lucky_number, "Sorry. Unlucky this time.");

建议你们动手写一写,再去翻看原答案,不要被思想所束缚~ip

引用Codewars
参考答案get

相关文章
相关标签/搜索