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
Rでオセロ_tokyor_20230121/a_reversi-solver_in_R_ins...
Search
florets1
January 20, 2023
0
930
Rでオセロ_tokyor_20230121/a_reversi-solver_in_R_inspired_by_SQL
florets1
January 20, 2023
Tweet
Share
More Decks by florets1
See All by florets1
人工知能はクロスジョインでできている/AI_Is_Built_on_Cross_Joins
florets1
0
44
仮説の取扱説明書/User_Guide_to_a_Hypothesis
florets1
4
340
複式簿記から純資産を排除する/eliminate_net_assets_from_double-entry_bookkeeping
florets1
1
400
カイ二乗検定は何をやっているのか/What_Does_the_Chi-Square_Test_Do
florets1
7
2.3k
直積は便利/direct_product_is_useful
florets1
3
400
butterfly_effect/butterfly_effect_in-house
florets1
1
230
データハンドリング/data_handling
florets1
2
230
カイ二乗検定との遭遇/The_path_to_encountering_the_chi-square_test
florets1
1
290
率の平均を求めてはいけない/Do_Not_Average_Rates
florets1
11
15k
Featured
See All Featured
How GitHub (no longer) Works
holman
314
140k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
36
2.5k
Scaling GitHub
holman
462
140k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
126
53k
Adopting Sorbet at Scale
ufuk
77
9.5k
What's in a price? How to price your products and services
michaelherold
246
12k
Faster Mobile Websites
deanohume
309
31k
[RailsConf 2023] Rails as a piece of cake
palkan
56
5.8k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
Designing Experiences People Love
moore
142
24k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.4k
Unsuck your backbone
ammeep
671
58k
Transcript
1 2023.01.21 Tokyo.R #103 Rでオセロ
2 SQLの話
3 a b SELECT * FROM a, b
4 SELECT * FROM a, b WHERE a.no=b.no a b
5 SELECT 原因.* FROM 原因, 結果 WHERE 結果が成功 結果から原因がわかるのでは?
6 SELECT 局面1.* FROM 局面1, 局面2, 局面3, .., 最終局面 WHERE
最終局面が勝利 オセロの勝てる手がわかるのでは?
7
8 という気持ちをRで表現しました
9 うれしいこと 局面1と最終局面の関係がわかる 最終局面が勝利となる局面1がわかる
10 コード
11
12
13
14
15
16
17
18 おまけ
19
20
21
22