Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
21
Task/Sort-three-variables/J/sort-three-variables.j
Normal file
21
Task/Sort-three-variables/J/sort-three-variables.j
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
x =: 'lions, tigers, and'
|
||||
y =: 'bears, oh my!'
|
||||
z =: '(from the "Wizard of OZ")'
|
||||
'x y z'=: /:~".'x;y;<z'
|
||||
x
|
||||
(from the "Wizard of OZ")
|
||||
y
|
||||
bears, oh my!
|
||||
z
|
||||
lions, tigers, and
|
||||
|
||||
x =: 77444
|
||||
y =: -12
|
||||
z =: 0
|
||||
'x y z'=: /:~".'x;y;<z'
|
||||
x
|
||||
_12
|
||||
y
|
||||
0
|
||||
z
|
||||
77444
|
||||
Loading…
Add table
Add a link
Reference in a new issue