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/algorithm-contest-3/test-data/5/11.cpp | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 works/life/algorithm-contest-3/test-data/5/11.cpp (limited to 'works/life/algorithm-contest-3/test-data/5/11.cpp') diff --git a/works/life/algorithm-contest-3/test-data/5/11.cpp b/works/life/algorithm-contest-3/test-data/5/11.cpp deleted file mode 100644 index 039ca04..0000000 --- a/works/life/algorithm-contest-3/test-data/5/11.cpp +++ /dev/null @@ -1,20 +0,0 @@ -#include -#include -#include - -const int kNumberCount = 1000; -const int kChooseCount = 200; - -int main() { - std::random_device random_device; - auto random = std::default_random_engine{random_device()}; - std::uniform_int_distribution distribution{0, 200000}; - - std::cout << kNumberCount << ' ' << kChooseCount << "\n"; - - for (int i = 0; i < kNumberCount; i++) { - std::cout << distribution(random) - 100000 << "\n"; - } - - return 0; -} -- cgit v1.2.3