Clarifications


Task Name Username Clarifications Response Public Created time Modified time
A - Loop Lines Maki_python
サンプルコードのd2 = to[tiles[i][j]]はd2 = to[tiles[i][j]][sd]ではありませんか?
[d]が抜けておりました。
`to[tiles[i][j]]` ではなく `to[tiles[i][j]][d]` が正しいです。
問題文を修正しました。


[d] was missing in the pseudo code for computing the length of a loop line.
The correct code is `to[tiles[i][j]][d]`, not `to[tiles[i][j]]`.
We have updated problem statement.
Yes