Speed of light
Return true if the given number is equivalent to 299,792,458.
Otherwise false.
Sample Code:
def lightSpeed(num):
# Enter your logic here...
Examples:
Input: 299792458
Output: True
Explanation: 299,792,458 m/s is the speed of light, according to Google.
Input: 323232
Output: False
Explanation: 299,792,458 m/s is the speed of light, according to Google.