Skip to content

Commit c24d936

Browse files
committed
day 83/366
1 parent 1d157a3 commit c24d936

File tree

6 files changed

+76
-0
lines changed

6 files changed

+76
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"java.project.sourcePaths": ["src"],
3+
"java.project.outputPath": "bin",
4+
"java.project.referencedLibraries": [
5+
"lib/**/*.jar"
6+
]
7+
}

My Solutions/083_Leap Years/README.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Getting Started
2+
3+
Welcome to the VS Code Java world. Here is a guideline to help you get started to write Java code in Visual Studio Code.
4+
5+
## Folder Structure
6+
7+
The workspace contains two folders by default, where:
8+
9+
- `src`: the folder to maintain sources
10+
- `lib`: the folder to maintain dependencies
11+
12+
Meanwhile, the compiled output files will be generated in the `bin` folder by default.
13+
14+
> If you want to customize the folder structure, open `.vscode/settings.json` and update the related settings there.
15+
16+
## Dependency Management
17+
18+
The `JAVA PROJECTS` view allows you to manage your dependencies. More details can be found [here](https://github.com/microsoft/vscode-java-dependency#manage-dependencies).
411 Bytes
Binary file not shown.
578 Bytes
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
Codewars Coding Challenge
3+
4+
Day 83/366
5+
6+
Level 7kyu
7+
8+
Leap Years
9+
10+
In this kata you should simply determine, whether a given year is a leap year or not. In case you don't know the rules, here they are:
11+
12+
Years divisible by 4 are leap years,
13+
but years divisible by 100 are not leap years,
14+
but years divisible by 400 are leap years.
15+
Tested years are in range 1600 ≤ year ≤ 4000.
16+
17+
18+
public class LeapYears {
19+
20+
public static boolean isLeapYear(int year) {
21+
return true;
22+
}
23+
}
24+
25+
26+
https://www.codewars.com/kata/526c7363236867513f0005ca/train/java
27+
28+
*/
29+
public class LeapYears {
30+
31+
public static boolean isLeapYear(int year) {
32+
if(year % 4 == 0){
33+
if(year % 100 == 0){
34+
return year % 400 == 0;
35+
} else{
36+
return true;
37+
}
38+
} else{
39+
return false;
40+
}
41+
}
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
public class Main {
2+
public static void main(String[] args) {
3+
// Test Cases
4+
System.out.println(LeapYears.isLeapYear(2020)); // true : tahun kabisat
5+
System.out.println(LeapYears.isLeapYear(2000)); // true : tahun kabisat
6+
System.out.println(LeapYears.isLeapYear(2015)); // false : bukan tahun kabisat
7+
System.out.println(LeapYears.isLeapYear(2100)); // false : bukan tahun kabisat
8+
}
9+
}

0 commit comments

Comments
 (0)