0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

(リンクだけです)迷路(英:maze)を調べた。

Last updated at Posted at 2023-04-27

内容を追加する予定です。

迷路の定義(2023/05/18)

簡単な迷路

①もっと簡単な、迷路を教えて下さい。
②罫線に、標準フォーマットありますか?
③mathematicaに取り込む方法を教えて下さい。

データ

        myMaze = [
            "", "", "", "", "", "", "", "", "", "", "", "",
            "", "S", " ", " ", " ", " ", " ", " ", " ", " ", " ", "",
            "", "", " ", "×", " ", "", "", "", "", "", "", "",
            "", "", " ", "×", " ", "", " ", " ", " ", "×", " ", "",
            "", "", " ", "×", "", "", " ", "×", " ", " ", " ", "",
            "", "", " ", "×", "", "", " ", "", "", "", " ", "",
            "", "", " ", " ", "", "", " ", "", "", "", " ", "",
            "", " ", "×", " ", " ", "×", " ", " ", " ", "", " ", "",
            "", " ", " ", " ", " ", " ", " ", " ", " ", "", "G", "",
            "", "", "", "", "", "", "", "", "", "", "", ""
        ]

参考

参考 ゲーム

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?