From 745abfa311b634401c03da2bbe19597675465f69 Mon Sep 17 00:00:00 2001 From: Popko Egor Date: Sun, 28 Sep 2025 19:12:07 +0300 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=B4=D0=B0=D0=BB=D0=B8=D0=BB=20=D0=BE?= =?UTF-8?q?=D1=82=D0=BB=D0=B0=D0=B4=D0=BE=D1=87=D0=BD=D1=8B=D0=B9=20=D0=B2?= =?UTF-8?q?=D1=8B=D0=B2=D0=BE=D0=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/main.cpp b/main.cpp index 40f9f03..27daa93 100644 --- a/main.cpp +++ b/main.cpp @@ -39,14 +39,6 @@ Input input_data(istream& in, bool prompt) } int main(int argc, char* argv[]) { - if (argc > 1) { - cerr << "argc = " << argc << endl; - for (int i = 0; i < argc; i++) { - cerr << "argv[" << i << "] = " << argv[i] << endl; - } - return 0; - } - auto in = input_data(cin, true); auto bins = make_histogram(in.numbers, in.bin_count); show_histogram_svg(bins);