In https://github.com/filipmartinsson/solidity-201/blob/master/safemath_assignment/bank_done.sol
At line number 40 :
assert(balance[msg.sender] == previousSenderBalance - amount);
Why didn’t Filip write it as :
assert(balance[msg.sender] == previousSenderBalance.sub(amount));
Looking forward to the answer. Thank you!