Company: Sigmoid_9dec
Difficulty: medium
Maximum Rainfall Date Problem Description You are given a CSV file with the following columns: COUNTRY DATE RAIN SNWD SNOW The description of the Dataset is given below: COUNTRY – Name of the country. DATE – Date in integer format ( YYYYMMDD ). RAIN – Denotes the amount of Rainfall received on a given date (in mm). SNWD – Denotes the depth of Snow (in cm). SNOW – Denotes the amount of Snowfall received on a given date. Below is a small snippet of the dataset for your reference: COUNTRY DATE RAIN SNWD SNOW Scotland 20140101 0 0 0 Dominican Republic 20140102 41 0 0 Monaco 20140103 15 0 0 Belarus 20140104 0 0 0 Iraq 20140105 0 0 0 Congo 20140106 3 0 0 You need to find the date with the maximum rainfall and return the value in the specified format. Note: DATE is in int format. Input Specification input1 : URL for the CSV file is being passed as a string to the function. Output Specification Return the date in the format Mmm DD,YYYY as a string. Note: The month