Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
14
Task/Entropy/MiniScript/entropy.mini
Normal file
14
Task/Entropy/MiniScript/entropy.mini
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
entropy = function(s)
|
||||
count = {}
|
||||
for c in s
|
||||
if count.hasIndex(c) then count[c] = count[c]+1 else count[c] = 1
|
||||
end for
|
||||
sum = 0
|
||||
for x in count.values
|
||||
countOverN = x / s.len
|
||||
sum = sum + countOverN * log(countOverN, 2)
|
||||
end for
|
||||
return -sum
|
||||
end function
|
||||
|
||||
print entropy("1223334444")
|
||||
Loading…
Add table
Add a link
Reference in a new issue