doing the norm

This commit is contained in:
Maoake Teriierooiterai
2026-01-07 13:23:42 +01:00
parent 93e8c10b27
commit e1351b4d2f
9 changed files with 9 additions and 13 deletions

View File

@@ -64,7 +64,7 @@ int range_bucket(t_stack *first)
int sqrt;
len = stack_len(first);
diff = (get_max_number(first) - get_min_number(first)) ;
diff = get_max_number(first) - get_min_number(first);
sqrt = my_sqrt(len);
if (diff / sqrt < 2)
{