
Disconnected Users
Find how many users wouldn't receive your email if some nodes get crushed.
Input: Four arguments. Network structure (as list of connections between nodes), users on each node (as dict where keys are node-name and values are amount of users), name of node that sends email, list of crashed nodes.
Output: Int. Amount of users that wouldn't receive an email.
Example:
disconnected_users([ ['A', 'B'], ['B', 'C'], ['C', 'D'] ], { 'A': 10, 'B': 20, 'C': 30, 'D': 40 }, 'A', ['C']) == 70 disconnected_users([ ['A', 'B'], ['B', 'D'], ['A', 'C'], ['C', 'D'] ], { 'A': 10, 'B': 0, 'C': 0, 'D': 40 }, 'A', ['B']) == 0 disconnected_users([ ['A', 'B'], ['A', 'C'], ['A', 'D'], ['A', 'E'], ['A', 'F'] ], { 'A': 10, 'B': 10, 'C': 10, 'D': 10, 'E': 10, 'F': 10 }, 'C', ['A']) == 50
CheckiO Extensions allow you to use local files to solve missions. More info in a blog post.
In order to install CheckiO client you'll need installed Python (version at least 3.8)
Install CheckiO Client first:
pip3 install checkio_client
Configure your tool
checkio --domain=py config --key=
Sync solutions into your local folder
checkio sync
(in beta testing) Launch local server so your browser can use it and sync solution between local file end extension on the fly. (doesn't work for safari)
checkio serv -d
Alternatevly, you can install Chrome extension or FF addon
checkio install-plugin
checkio install-plugin --ff
checkio install-plugin --chromium
Read more here about other functionality that the checkio client provides. Feel free to submit an issue in case of any difficulties.