Data update
This commit is contained in:
parent
81fd053722
commit
52a6ef48dd
10248 changed files with 63654 additions and 6775 deletions
18
Task/Symmetric-difference/Delphi/symmetric-difference-2.pas
Normal file
18
Task/Symmetric-difference/Delphi/symmetric-difference-2.pas
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
program SymmetricDifference;
|
||||
|
||||
type
|
||||
charSet = set of Char;
|
||||
|
||||
var
|
||||
s1, s2, s3: charSet;
|
||||
ch: char;
|
||||
|
||||
begin
|
||||
s1 := ['a', 'b', 'c', 'd'];
|
||||
s2 := ['c', 'd', 'e', 'f'];
|
||||
s3 := s1 >< s2;
|
||||
|
||||
for ch in s3 do
|
||||
write(ch, ' ');
|
||||
writeLn;
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue