In (American) Football, a team can score if they manage to kick a ball through the goal (i.e. above the crossbar and between the uprights).
Create a function that returns True if the ball 0 goes through the goal. You will be given a list of lists.
is_goal_scored([
[" # # "],
[" # 0 # "],
[" # # "],
[" ####### "],
[" # "],
[" # "],
[" # "]
]) ➞ True
is_goal_scored([
[" #0 # "],
[" # # "],
[" # # "],
[" ####### "],
[" # "],
[" # "],
[" # "]
]) ➞ True
is_goal_scored([
[" # # "],
[" # # "],
[" # # 0"],
[" ####### "],
[" # "],
[" # "],
[" # "]
]) ➞ False