From 56bf21529a8fa1865bd9c3a68c589019bc2ede95 Mon Sep 17 00:00:00 2001 From: Jereinette <114301591+Jereinette@users.noreply.github.com> Date: Thu, 13 Apr 2023 22:07:21 +0300 Subject: [PATCH] Update solution.py --- solution.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/solution.py b/solution.py index b5a9da9..3fb7724 100644 --- a/solution.py +++ b/solution.py @@ -1,11 +1,8 @@ import pandas as pd import numpy as np +from scipy import stats - -chat_id = 123456 # Ваш chat ID, не меняйте название переменной +chat_id = 402739329 # Ваш chat ID, не меняйте название переменной def solution(x: np.array, y: np.array) -> bool: - # Измените код этой функции - # Это будет вашим решением - # Не меняйте название функции и её аргументы - return ... # Ваш ответ, True или False + return stats.cramervonmises_2samp(x, y).pvalue < 0.04