From 99e2e923d0c77b02f3fb4ff648ea916954868606 Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Fri, 28 Feb 2025 23:13:39 +0800 Subject: chore(store): move everything to store. --- works/life/2020-algorithm-contest/test-data/1/2.cpp | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 works/life/2020-algorithm-contest/test-data/1/2.cpp (limited to 'works/life/2020-algorithm-contest/test-data/1/2.cpp') diff --git a/works/life/2020-algorithm-contest/test-data/1/2.cpp b/works/life/2020-algorithm-contest/test-data/1/2.cpp deleted file mode 100644 index 3bdaf19..0000000 --- a/works/life/2020-algorithm-contest/test-data/1/2.cpp +++ /dev/null @@ -1,15 +0,0 @@ -#include -#include - -int main() -{ - std::default_random_engine engine; - std::uniform_int_distribution<> distribution(0, 10000); - const int size = 10000; - std::cout << size << '\n'; - for (int i = 0 ; i < size; i++) - { - std::cout << distribution(engine) << ' '; - } - return 0; -} -- cgit v1.2.3