はじめに
フィボナッチ数列とは、各数がその直前の2つの数の和になる数列です。この数列は0と1から始まり、次の数は直前の2つの数の和になります。このチャレンジでは、n番目の項までのフィボナッチ数列を含むリストを生成する関数を書きます。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
python(("Python")) -.-> python/BasicConceptsGroup(["Basic Concepts"])
python(("Python")) -.-> python/ControlFlowGroup(["Control Flow"])
python(("Python")) -.-> python/DataStructuresGroup(["Data Structures"])
python(("Python")) -.-> python/FunctionsGroup(["Functions"])
python/BasicConceptsGroup -.-> python/comments("Comments")
python/ControlFlowGroup -.-> python/conditional_statements("Conditional Statements")
python/ControlFlowGroup -.-> python/while_loops("While Loops")
python/DataStructuresGroup -.-> python/lists("Lists")
python/FunctionsGroup -.-> python/function_definition("Function Definition")
python/FunctionsGroup -.-> python/build_in_functions("Build-in Functions")
subgraph Lab Skills
python/comments -.-> lab-13630{{"Pythonでフィボナッチ数列を生成する"}}
python/conditional_statements -.-> lab-13630{{"Pythonでフィボナッチ数列を生成する"}}
python/while_loops -.-> lab-13630{{"Pythonでフィボナッチ数列を生成する"}}
python/lists -.-> lab-13630{{"Pythonでフィボナッチ数列を生成する"}}
python/function_definition -.-> lab-13630{{"Pythonでフィボナッチ数列を生成する"}}
python/build_in_functions -.-> lab-13630{{"Pythonでフィボナッチ数列を生成する"}}
end