Implement a function that finds the largest number in a list of integers.
For the list [43, -19, 75, 1]:
Complete the find_largest_number function that takes a list of numbers and returns the largest value in that list.
75 is the largest number in the list
-1 is the largest number among negative numbers
When there's only one number, it's the largest by default