Error
|
|
---|---|
@Ibrahim Nash | 5761 |
@blackshadows | 5715 |
@akhayrutdinov | 5111 |
@mb1973 | 4989 |
@Quandray | 4944 |
@saiujwal13083 | 4506 |
@sanjay05 | 3762 |
@marius_valentin_dragoi | 3516 |
@sushant_a | 3459 |
@verma_ji | 3341 |
@KshamaGupta | 3318 |
Complete Leaderboard | |
|
|
@aroranayan999 | 1083 |
@bt8816103042 | 739 |
@SherlockHolmes3 | 444 |
@SHOAIBVIJAPURE | 430 |
@codeantik | 429 |
@shalinibhataniya1097 | 400 |
@ShamaKhan1 | 392 |
@neverevergiveup | 372 |
@amrutakashikar2 | 355 |
@murarry3625 | 350 |
@mahlawatep | 349 |
Complete Leaderboard |
Given two dates, find total number of days between them.
Note: The system follows Gregorian calender from the beginning of the time.
Example 1:
Input: d1 = 10, m1 = 2, y1 = 2014 d2 = 10, m2 = 3, y2 = 2015 Output: 393 Explanation: By counting manually, we find out there are 393 days between the two dates.
Example 2:
Input: d1 = 10, m1 = 2, y1 = 2001 d2 = 10, m2 = 2, y2 = 2002 Output: 28 Explanation: By counting manually, we find out there are 28 days between the two dates.
Your Task:
You don't need to read input or print anything. Your task is to complete the function noOfDays() which takes Integers d1,m1,y1 for the first date and d2,m2,y2 as the second date as input and returns the answer.
Expected Time Complexity: O(1)
Expected Auxiliary Space: O(1)
Constraints:
1 <= d1,d2 <= 31
1 <= m1,m2 <= 12
1 <= y1,y2 <= 3000
We strongly recommend solving this problem on your own before viewing its editorial. Do you still want to view the editorial?
Yes