Created
June 7, 2021 18:44
-
-
Save BrooklinJazz/8fae045d8a8131eeaa35c40007f44138 to your computer and use it in GitHub Desktop.
List Operators
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [1, 2] ++ [3, 4] # [1, 2, 3, 4] | |
| [1, 2, 3] -- [1, 3] # [2] | |
| [1, 2, 3] -- [1] # [2, 3] | |
| [1, 2, 3] -- [3, 1] # [2] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment