Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
f-sync_algo
Search
k-hasegw
November 22, 2022
Programming
0
240
f-sync_algo
k-hasegw
November 22, 2022
Tweet
Share
More Decks by k-hasegw
See All by k-hasegw
researchContentsForB4
khasegw0831
0
110
progressReport_k-hasegw_20230220.pdf
khasegw0831
0
110
progressReport_k-hasegw_20230131.pdf
khasegw0831
0
350
progressReport_k-hasegw_20230117
khasegw0831
0
380
Other Decks in Programming
See All in Programming
“いい感じ“な定量評価を求めて - Four Keysとアウトカムの間の探求 -
nealle
1
10k
RailsGirls IZUMO スポンサーLT
16bitidol
0
190
Node-RED を(HTTP で)つなげる MCP サーバーを作ってみた
highu
0
120
#QiitaBash MCPのセキュリティ
ryosukedtomita
1
1.3k
VS Code Update for GitHub Copilot
74th
2
650
AIエージェントはこう育てる - GitHub Copilot Agentとチームの共進化サイクル
koboriakira
0
590
「Cursor/Devin全社導入の理想と現実」のその後
saitoryc
0
820
NPOでのDevinの活用
codeforeveryone
0
840
なぜ適用するか、移行して理解するClean Architecture 〜構造を超えて設計を継承する〜 / Why Apply, Migrate and Understand Clean Architecture - Inherit Design Beyond Structure
seike460
PRO
3
770
20250628_非エンジニアがバイブコーディングしてみた
ponponmikankan
0
680
イベントストーミング図からコードへの変換手順 / Procedure for Converting Event Storming Diagrams to Code
nrslib
2
820
High-Level Programming Languages in AI Era -Human Thought and Mind-
hayat01sh1da
PRO
0
780
Featured
See All Featured
Typedesign – Prime Four
hannesfritz
42
2.7k
[RailsConf 2023] Rails as a piece of cake
palkan
55
5.7k
A Modern Web Designer's Workflow
chriscoyier
695
190k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3.1k
Art, The Web, and Tiny UX
lynnandtonic
299
21k
YesSQL, Process and Tooling at Scale
rocio
173
14k
Testing 201, or: Great Expectations
jmmastey
43
7.6k
Rails Girls Zürich Keynote
gr2m
95
14k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.6k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.5k
Building a Modern Day E-commerce SEO Strategy
aleyda
42
7.4k
Transcript
アルゴリズム 停⽌条件:左右が同じ距離 1. 左右のロボット or 壁との距離をLook 2. 左右の距離が同じ 1. 停⽌
3. 左右の距離が異なる 1. ⼤きい⽅の距離を 1 縮めるようにMove 2. Lookに戻る
1. 左右の距離をLook 左:1 右:1 左:1 右:0 左:0 右:2
2. 左右の距離が同じ 左:1 右:1 左:1 右:0 左:0 右:2
3. 左右の距離が異なる場合 左:1 右:1 左:1 右:0 左:0 右:2
1. 大きい方を 1 縮める 左:1 右:1 左:1 右:0 左:0 右:2
1. 左右の距離をLook 左:1 右:0 左:0 右:2 左:2 右:1
3. 左右の距離が異なる場合 左:1 右:0 左:0 右:2 左:2 右:1
1. 大きい方を 1 縮める 左:1 右:0 左:0 右:2 左:2 右:1
1. 左右の距離をLook 左:0 右:2 左:2 右:0 左:0 右:2
3. 左右の距離が異なる場合 左:0 右:2 左:2 右:0 左:0 右:2
1. 大きい方を 1 縮める 左:0 右:2 左:2 右:0 左:0 右:2
無限ループに陥る