From cd14de2329e6f7b8162621a579f1100244d3e087 Mon Sep 17 00:00:00 2001 From: Stepan Siniavskii Date: Mon, 5 Jun 2023 10:56:12 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B2?= =?UTF-8?q?=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + main.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c356251..a017264 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Prerequisites *.d +/curl # Compiled Object files *.slo *.lo diff --git a/main.cpp b/main.cpp index af1f15e..09ad4bb 100644 --- a/main.cpp +++ b/main.cpp @@ -33,7 +33,7 @@ int main() { // curl_global_init(CURL_GLOBAL_ALL); auto in = input_data(cin, true); auto bins = make_histogram(in.numbers, in.bin_count); - show_histogram_text(bins, in.bin_count); - //show_histogram_svg(bins); + //show_histogram_text(bins, in.bin_count); + show_histogram_svg(bins); return 0; }