頗有意思的一道題

題目內容

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

相關文章
相關標籤/搜索