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
250
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
Android16 Migration Stories ~Building a Pattern for Android OS upgrades~
reoandroider
0
120
Building, Deploying, and Monitoring Ruby Web Applications with Falcon (Kaigi on Rails 2025)
ioquatix
4
2.2k
アメ車でサンノゼを走ってきたよ!
s_shimotori
0
230
登壇は dynamic! な営みである / speech is dynamic
da1chi
0
340
One Enishi After Another
snoozer05
PRO
0
100
スマホから Youtube Shortsを見られないようにする
lemolatoon
27
32k
技術的負債の正体を知って向き合う / Facing Technical Debt
irof
0
180
Server Side Kotlin Meetup vol.16: 内部動作を理解して ハイパフォーマンスなサーバサイド Kotlin アプリケーションを書こう
ternbusty
3
210
エンジニアインターン「Treasure」とHonoの2年、そして未来へ / Our Journey with Hono Two Years at Treasure and Beyond
carta_engineering
0
290
株式会社 Sun terras カンパニーデック
sunterras
0
330
After go func(): Goroutines Through a Beginner’s Eye
97vaibhav
0
400
All About Angular's New Signal Forms
manfredsteyer
PRO
0
170
Featured
See All Featured
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.5k
Git: the NoSQL Database
bkeepers
PRO
431
66k
KATA
mclloyd
32
15k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.2k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
9.7k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
Building an army of robots
kneath
306
46k
What's in a price? How to price your products and services
michaelherold
246
12k
The Power of CSS Pseudo Elements
geoffreycrofte
79
6k
The Language of Interfaces
destraynor
162
25k
Making the Leap to Tech Lead
cromwellryan
135
9.6k
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
無限ループに陥る