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
8
Task/Nth/Sidef/nth.sidef
Normal file
8
Task/Nth/Sidef/nth.sidef
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
func nth(n) {
|
||||
static irregulars = Hash.new(<1 ˢᵗ 2 ⁿᵈ 3 ʳᵈ 11 ᵗʰ 12 ᵗʰ 13 ᵗʰ>...);
|
||||
n.to_s + (irregulars{n % 100} \\ irregulars{n % 10} \\ 'ᵗʰ');
|
||||
}
|
||||
|
||||
[range(0, 25), range(250, 265), range(1000, 1025)].each { |r|
|
||||
say r.map {|n| nth(n) }.join(" ");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue