AfanasevGad7

This is a task for our favourite professor
git clone git://git.stellar-nexus.ru/AfanasevGad7
Log | Files | Refs | README

commit e11d051e1c7d72413df2ee54d05230e9e1489d91
parent 89a78dfab068e2dad7f55d4dd5135e5f4c8f88e5
Author: Plat <plat@stellar-nexus.ru>
Date:   Thu,  6 Nov 2025 20:48:03 +0000

Fixed typo

Diffstat:
Mrb.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rb.c b/rb.c @@ -8,7 +8,7 @@ #include "config.h" -#define TESTNUMBER 100000 +#define TESTNUMBER 1000000 inline Node * init(int val) @@ -131,7 +131,7 @@ main(int argc, char *argv[]) Node *root = NULL; - for (int i = 0; i < 1000000; ++i) { + for (int i = 0; i < TESTNUMBER; ++i) { root = add(root, arr[i]); SET_COLOR(root, BLACK); }