はじめに
回文とは、前向きと後ろ向きで同じように読める単語、フレーズ、数字、またはその他の文字の列です。たとえば、「racecar」は回文です。なぜなら、この単語を逆にすると、依然として「racecar」と書かれているからです。このチャレンジでは、与えられた文字列が回文かどうかをチェックする関数を書きます。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
python(("Python")) -.-> python/ModulesandPackagesGroup(["Modules and Packages"])
python(("Python")) -.-> python/BasicConceptsGroup(["Basic Concepts"])
python(("Python")) -.-> python/DataStructuresGroup(["Data Structures"])
python(("Python")) -.-> python/FunctionsGroup(["Functions"])
python/BasicConceptsGroup -.-> python/booleans("Booleans")
python/BasicConceptsGroup -.-> python/comments("Comments")
python/DataStructuresGroup -.-> python/lists("Lists")
python/DataStructuresGroup -.-> python/tuples("Tuples")
python/FunctionsGroup -.-> python/function_definition("Function Definition")
python/ModulesandPackagesGroup -.-> python/importing_modules("Importing Modules")
python/ModulesandPackagesGroup -.-> python/using_packages("Using Packages")
python/ModulesandPackagesGroup -.-> python/standard_libraries("Common Standard Libraries")
subgraph Lab Skills
python/booleans -.-> lab-13704{{"Python における回文検出"}}
python/comments -.-> lab-13704{{"Python における回文検出"}}
python/lists -.-> lab-13704{{"Python における回文検出"}}
python/tuples -.-> lab-13704{{"Python における回文検出"}}
python/function_definition -.-> lab-13704{{"Python における回文検出"}}
python/importing_modules -.-> lab-13704{{"Python における回文検出"}}
python/using_packages -.-> lab-13704{{"Python における回文検出"}}
python/standard_libraries -.-> lab-13704{{"Python における回文検出"}}
end