You are given two strings, text and suffix.
Return a bool that is True if text ends with suffix when letter case is ignored, and False otherwise.
The comparison must be case-insensitive (so "report.PDF" ends with ".pdf"). An empty suffix is considered a suffix of every string, so it returns True.
NOTE: This is a function-type question — you only write the function. Do not read input or print anything; a hidden checker calls your function and checks its return value.
Arguments
'Hello World'
'WORLD'
Returns
True