We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
/*
* Complete the 'findDay' function below.
*
* The function is expected to return a STRING.
* The function accepts following parameters:
* 1. INTEGER month
* 2. INTEGER day
* 3. INTEGER year
*/
public static String findDay(int month, int day, int year) {
LocalDate firstDay = LocalDate.of(year, month, day);
DayOfWeek firstDOW = (DayOfWeek) firstDay.getDayOfWeek();
return String.valueOf(firstDOW);
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Java Date and Time
You are viewing a single comment's thread. Return to all comments →
import java.time.LocalDate; import java.time.DayOfWeek;
class Result {