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.
class Result {
public static String findDay(int month, int day, int year) {
LocalDate loc = LocalDate.of(year, month, day);
return loc.getDayOfWeek().name();
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 →
Simple guys just import java.time.LocalDate;
class Result { public static String findDay(int month, int day, int year) { LocalDate loc = LocalDate.of(year, month, day); return loc.getDayOfWeek().name();