-
Notifications
You must be signed in to change notification settings - Fork 0
read_prefecture
Yuuki Toriyama edited this page Feb 2, 2024
·
1 revision
入力された文字列から都道府県名を抽出します。
---
title: read_prefecture()
---
flowchart TD
Start(処理開始)-->|input|LoopStart["都道府県名リストから都道府県名を1つ読み込む"]-->|prefecture_name|Condition1{"inputに\nprefecture_nameが含まれる?"}
Condition1-->|Yes|ReturnValue["マッチ結果を返す"]-->End("処理終了")
Condition1-->|No|Condition2{"最後の要素?"}
Condition2-->|Yes|ReturnNone["Noneを返す"]-->End
Condition2-->|No|LoopStart