SUPPORT UKRAINE
- Your indifference to the act of cruelty can thrive rogue nations like Russia -
タグ
python
を含むブログ一覧
Python coding challenge - 噂は本当? Town judge を探せ! 🔒
Published 2022年8月18日5:49 by mootaro23
Python Coding Challenge - Who is the town judge?
(Python コーディングチャレンジ [噂は本当? Town judge を探せ!] 編)
この練習問題は、問題文から如何にグラフ理論に基づいたモデルを導き出せるか、が鍵となります。適切なモデル化さえ行えれば解決策自体は難しいものではありません。
問題:
N 人の人々が暮らす町があります。…
Python coding challenge - バイナリツリーを構成する2つのノードに共通する最も身近な親ノードを探そう!
Published 2022年8月16日20:05 by mootaro23
Python Coding Challenge - How will you find the lowest common ancestor in a binary tree?
(Python コーディングチャレンジ [バイナリツリーを構成する2つのノードに共通する最も身近な親ノードを探そう!] 編)
厳格な階層ルールが規定されている会社を想像してください。この会社では部下に指示を出せるのは…
Python coding challenge - 無向グラフにおいて閉路 (cycle) を形成している辺 (edge) を見つけて connected-acyclic グラフ == ツリーにしよう!
Published 2022年8月15日8:08 by mootaro23
Python Coding Challenge - How will you detect a redundant road connection?
(Python コーディングチャレンジ [無向グラフにおいて閉路 (cycle) を形成している辺 (edge) を見つけて connected-acyclic グラフ == ツリーにしよう!] 編)
N 個の都市からなる国を想像してください。…
Practical Python Design Patterns - Python で学ぶデザインパターン: The Visitor Pattern part. 3「ダメ押し確認 - ビジターパターン編」の巻
Published 2022年8月14日16:56 by mootaro23
Practical Python Design Patterns - The Visitor Pattern 編
「第18章: ビジターパターン」の巻
「ビジターパターンの実装」の巻
「ダメ押し確認 - ビジターパターン編」の巻
Parting Shots
(ダメ押し確認 - ビジターパターン編)
手にしたコードが表現しているアイデアを掴むために見たままを1行1行入力していく、という…
Practical Python Design Patterns - Python で学ぶデザインパターン: The Visitor Pattern part. 2「ビジターパターンの実装」の巻 🔒
Published 2022年8月13日18:30 by mootaro23
Practical Python Design Patterns - The Visitor Pattern 編
「第18章: ビジターパターン」の巻
「ビジターパターンの実装」の巻
「ダメ押し確認 - ビジターパターン編」の巻
The Visitor Pattern
(ビジターパターンの実装)
今回も一緒くたに押し込めてしまっている機能を複数のパーツに分解し、それぞれが相互に関わり…
Practical Python Design Patterns - Python で学ぶデザインパターン: The Visitor Pattern part. 1「第18章: ビジターパターン」の巻
Published 2022年8月12日19:43 by mootaro23
Practical Python Design Patterns - The Visitor Pattern 編
「第18章: ビジターパターン」の巻
「ビジターパターンの実装」の巻
「ダメ押し確認 - ビジターパターン編」の巻
Chapter 18: Visitor Pattern
(第18章: ビジターパターン)
I want to believe.
- X-Files
Ov…
Python coding challenge [解説編]: Basics of Graph Theory Part.3 - Representation and Manipulation of Trees (グラフ理論の基礎総復習 その3 - ツリーの表現と操作) 🔒
Published 2022年8月7日5:17 by mootaro23
Basics of Graph Theory Part.3 - Representation and Manipulation of Trees
(グラフ理論の基礎総復習 その3 - ツリーの表現と操作)
ツリー (tree) は「循環していない (acyclic)」グラフのことでした。中でもバイナリツリー (binary tree) は、1つの node が2つまでの子ノード (child…