Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
13
Task/SEDOLs/Potion/sedols.potion
Normal file
13
Task/SEDOLs/Potion/sedols.potion
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
sedolnum = (c) :
|
||||
if ("0" ord <= c ord and c ord <= "9" ord): c number integer.
|
||||
else: 10 + c ord - "A" ord.
|
||||
.
|
||||
|
||||
sedol = (str) :
|
||||
weight = (1, 3, 1, 7, 3, 9)
|
||||
sum = 0
|
||||
6 times (i) :
|
||||
sum = sum + sedolnum(str(i)) * weight(i)
|
||||
.
|
||||
(str, (10 - (sum % 10)) % 10) join
|
||||
.
|
||||
Loading…
Add table
Add a link
Reference in a new issue