We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
去年よくあった間違い。
fib_itr
fib_rec
fib_matrix
var x = 1 とすると変数xはInt型になります。 BigInt型で宣言したいときは、 var x: BigInt = 1としましょう。 正しく答を計算できていることを確認するためにfib_matrixは大きなnでもテストしましょう。
var x = 1
x
Int
BigInt
var x: BigInt = 1
n
The text was updated successfully, but these errors were encountered:
No branches or pull requests
去年よくあった間違い。
fib_itr
はfib_rec
で、fib_matrix
はfib_itr
でテストするべきところをちゃんとテストしていない。var x = 1
とすると変数
x
はInt
型になります。BigInt
型で宣言したいときは、var x: BigInt = 1
としましょう。正しく答を計算できていることを確認するために
fib_matrix
は大きなn
でもテストしましょう。The text was updated successfully, but these errors were encountered: