1
0
This commit is contained in:
Daniel Tartavel 2022-09-23 20:21:27 +02:00
parent cf94d99129
commit f070bde13e

View File

@ -51,7 +51,7 @@ class schulze
$w = array();
$i = 0;
$j = 0;
$v = stringify($v);
$v = $this->stringify($v);
sort($v);
print_r($v);
for($i = 0;$i < count($v) - 1;$i++)
@ -69,7 +69,7 @@ class schulze
$w[$s] = 1;
}
}
$w = votify($w);
$w = $this->votify($w);
print_r($w);
}