はじめに
コンピュータサイエンスにおいて、バイナリは基数2の数値表記システムであり、通常0と1の2つの記号を使って数値を表現します。バイナリはコンピューティングやデジタルエレクトロニクスにおいて広く使われています。このチャレンジでは、10進数を入力として受け取り、そのバイナリ表現を返すPython関数を書きます。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
python(("Python")) -.-> python/BasicConceptsGroup(["Basic Concepts"])
python(("Python")) -.-> python/FunctionsGroup(["Functions"])
python/BasicConceptsGroup -.-> python/comments("Comments")
python/FunctionsGroup -.-> python/function_definition("Function Definition")
python/FunctionsGroup -.-> python/build_in_functions("Build-in Functions")
subgraph Lab Skills
python/comments -.-> lab-13730{{"10 進数をバイナリに変換する"}}
python/function_definition -.-> lab-13730{{"10 進数をバイナリに変換する"}}
python/build_in_functions -.-> lab-13730{{"10 進数をバイナリに変換する"}}
end