Solución
solution.tsTypeScript
public class Solution {
public boolean isLeapYear(int year) {
// Escribe tu solución aquí
if(year % 400 == 0){
return true;
}
if(year % 4 == 0 && year % 100 != 0){
return true;
}
return false;
}
}0respuestas