Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
11
Task/Symmetric-difference/J/symmetric-difference-1.j
Normal file
11
Task/Symmetric-difference/J/symmetric-difference-1.j
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
A=: ~.;:'John Serena Bob Mary Serena'
|
||||
B=: ~. ;:'Jim Mary John Jim Bob'
|
||||
|
||||
(A-.B) , (B-.A) NB. Symmetric Difference
|
||||
┌──────┬───┐
|
||||
│Serena│Jim│
|
||||
└──────┴───┘
|
||||
A (-. , -.~) B NB. Tacit equivalent
|
||||
┌──────┬───┐
|
||||
│Serena│Jim│
|
||||
└──────┴───┘
|
||||
12
Task/Symmetric-difference/J/symmetric-difference-2.j
Normal file
12
Task/Symmetric-difference/J/symmetric-difference-2.j
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
A -. B NB. items in A but not in B
|
||||
┌──────┐
|
||||
│Serena│
|
||||
└──────┘
|
||||
A -.~ B NB. items in B but not in A
|
||||
┌───┐
|
||||
│Jim│
|
||||
└───┘
|
||||
A NB. A is a sequence without duplicates
|
||||
┌────┬──────┬───┬────┐
|
||||
│John│Serena│Bob│Mary│
|
||||
└────┴──────┴───┴────┘
|
||||
4
Task/Symmetric-difference/J/symmetric-difference-3.j
Normal file
4
Task/Symmetric-difference/J/symmetric-difference-3.j
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
A (, -. [ -. -.) B
|
||||
┌──────┬───┐
|
||||
│Serena│Jim│
|
||||
└──────┴───┘
|
||||
Loading…
Add table
Add a link
Reference in a new issue