Given a list of coins, father needs to distribute them amongst his three children. Write a function to determine if the coins can be distributed equally or not. Return True if each son receives the same amount of money, otherwise return False.
[1, 2, 3, 2, 2, 2, 3] ➞ True
(1+2+3+2+4+3)/3 => 15/3 => 5[(1,2,2),(2,3),(2,3)][5, 3, 10, 1, 2] ➞ False
(5+3+10+1+2)/3 => 21/3 => 7coins_div([1, 2, 3, 2, 2, 2, 3]) ➞ True
coins_div([5, 3, 10, 1, 2]) ➞ False
coins_div([2, 4, 3, 2, 4, 9, 7, 8, 6, 9]) ➞ True