Created
February 7, 2018 12:50
-
-
Save vladthelittleone/ab80293a4b82cffedfa1747d074d577f to your computer and use it in GitHub Desktop.
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
| def get_amount(): | |
| amount_3 = order_3['amount'] * order_3['price'] | |
| amount_2 = order_2['amount'] if order_2['amount'] < amount_3 else amount_3 | |
| amount_2 = amount_2 * order_2['price'] | |
| return order_1['amount'] if order_1['amount'] < amount_2 else amount_2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment