Created
October 1, 2018 16:07
-
-
Save wulymammoth/22503aa43ea1112eb03eb786e32f709a to your computer and use it in GitHub Desktop.
daily technical problem 00
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
| #0: Given an input, accounts, write a function to produce the given output. Feel free to ask questions | |
| accounts = [ | |
| ["John", "[email protected]", "[email protected]"], | |
| ["John", "[email protected]"], | |
| ["John", "[email protected]", "[email protected]"], | |
| ["Mary", "[email protected]"] | |
| ] | |
| Output: [ | |
| ["John", '[email protected]', '[email protected]', '[email protected]'], | |
| ["John", "[email protected]"], | |
| ["Mary", "[email protected]"] | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment