プログラミング C++とpythonの比較(4) 組み合わせ第四弾のテーマは「組み合わせ」です。以下は、n個のものからr個を取り出した時の組み合わせの数、という意味の数式です。高校の数IIでしたっけ?\({}_{n}C_{r}\)数式を綺麗に出したかったので、「LaTex1」を使いました。... 2025.05.31 プログラミング
プログラミング C++とpythonの比較(3) オプション第三弾はオプションです。C++#include <iostream>#include <vector>#include <unordered_map>#include <regex>using namespace std;stru... 2025.05.25 プログラミング
プログラミング C++とpythonの比較(2) ファイルオープン第二弾はファイルオープン少し差が出ました。それぞれ自動フォーマットしていますが、行数で言うと倍以上の差となりましたね。Pythonimport sysMAX_BUFF_SIZE = 1024s = ""try: with o... 2025.05.24 プログラミング
プログラミング C++とpythonの比較(1) Hello world手始めは定番の"Hello world"C++#include <iostream>using namespace std;int main(){ cout << "Hello world" << endl; retu... 2025.05.18 プログラミング