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
15
Task/Matrix-transposition/Sidef/matrix-transposition.sidef
Normal file
15
Task/Matrix-transposition/Sidef/matrix-transposition.sidef
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
func transpose(matrix) {
|
||||
matrix[0].range.map{|i| matrix.map{_[i]}};
|
||||
};
|
||||
|
||||
var m = [
|
||||
[1, 1, 1, 1],
|
||||
[2, 4, 8, 16],
|
||||
[3, 9, 27, 81],
|
||||
[4, 16, 64, 256],
|
||||
[5, 25, 125, 625],
|
||||
];
|
||||
|
||||
transpose(m).each { |row|
|
||||
"%5d" * row.len -> printlnf(row...);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue