According to superstition, lots of unpleasant stuff happens on Friday the 13th, so you might like to find the next occurence of such a date. Given a date string ('dd/mm/yyyy'), return the next occurence of a Friday the 13th. If the date string is already a Friday the 13th, return the original string. Output should be in the form of a date string ('dd/mm/yyyy').
Example: date = '13/09/2013', nextfri13(date) = '13/09'2013'; date = '15/12/2013', nextfri13(date) = '13/06/2014';
And so on. Good luck!
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers70
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
52689 Solvers
-
Find state names that start with the letter N
1431 Solvers
-
Set the array elements whose value is 13 to 0
1435 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1256 Solvers
-
4494 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!