-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProblem0000.java
More file actions
29 lines (21 loc) · 603 Bytes
/
Problem0000.java
File metadata and controls
29 lines (21 loc) · 603 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/// ////////////////////////////////////////////////////////////////////////////
// Result found:
/// ////////////////////////////////////////////////////////////////////////////
package ae;
import util.Log;
/**
* {TITLE}.
*
* @link Problem definition [[docs/hackerrank/problem0000.md]]
*/
public class Problem0000 {
private Problem0000() {}
/** Problem template method. */
public static Integer problem0000() {
Integer result = null;
String log = String.format("Problem 00XX solved: %d", result);
Log.info(log);
return result;
}
}
// CHECKSTYLE.ON: JavadocParagraph