...
/Challenge: Account Number of Customers with Balance < $500
Challenge: Account Number of Customers with Balance < $500
Test your understanding by solving a slightly tricky challenge.
We'll cover the following...
Problem statement
In this challenge, you will be given the names, account numbers, and balances of a customers. Your task is to return the account numbers of customers with a balance of less than $500.
Structure Account
To store information about account holders, we have already defined the structure Account
...