sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common gnupg lsb-release
| from collections import namedtuple | |
| def coroutine(func): | |
| def start(*args, **kwargs): | |
| cr = func(*args, **kwargs) | |
| next(cr) | |
| return cr | |
| return start | |
| # @coroutine |
| def solution(n): | |
| roman_numerals = {1000:'M', | |
| 900: 'CM', | |
| 500: 'D', | |
| 400: 'CD', | |
| 100: 'C', | |
| 90: 'XC', | |
| 50: 'L', | |
| 40: 'XL', | |
| 10: 'X', |
My favorite DevOps tools, which I actively use, are: