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
プロパティベーステストによるUIテスト: LLMによるプロパティ定義生成でエッジケースを捉える
tetta_pdnt
0
3.3k
JSONataを使ってみよう Step Functionsが楽しくなる実践テクニック #devio2025
dafujii
1
590
チームのテスト力を鍛える
goyoki
3
680
RDoc meets YARD
okuramasafumi
4
170
「手軽で便利」に潜む罠。 Popover API を WCAG 2.2の視点で安全に使うには
taitotnk
0
870
実用的なGOCACHEPROG実装をするために / golang.tokyo #40
mazrean
1
290
go test -json そして testing.T.Attr / Kyoto.go #63
utgwkk
3
310
アセットのコンパイルについて
ojun9
0
130
Compose Multiplatform × AI で作る、次世代アプリ開発支援ツールの設計と実装
thagikura
0
170
Laravel Boost 超入門
fire_arlo
3
220
AIと私たちの学習の変化を考える - Claude Codeの学習モードを例に
azukiazusa1
10
4.3k
Performance for Conversion! 分散トレーシングでボトルネックを 特定せよ
inetand
0
2.4k
Featured
See All Featured
Navigating Team Friction
lara
189
15k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
580
GraphQLとの向き合い方2022年版
quramy
49
14k
4 Signs Your Business is Dying
shpigford
184
22k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
850
Side Projects
sachag
455
43k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
15k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.6k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
285
13k
A Modern Web Designer's Workflow
chriscoyier
696
190k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3k
A better future with KSS
kneath
239
17k
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
無限ループに陥る