File tree Expand file tree Collapse file tree 9 files changed +51
-18
lines changed
algorithms-miscellaneous-7
java/com/baeldung/algorithms/perfectnumber
test/java/com/baeldung/algorithms/perfectnumber Expand file tree Collapse file tree 9 files changed +51
-18
lines changed Original file line number Diff line number Diff line change 1010- [ Check if Two Strings Are Rotations of Each Other] ( https://www.baeldung.com/java-string-check-strings-rotations )
1111- [ Find the Largest Prime Under the Given Number in Java] ( https://www.baeldung.com/java-largest-prime-lower-threshold )
1212- [ Count the Number of Unique Digits in an Integer using Java] ( https://www.baeldung.com/java-int-count-unique-digits )
13- - [ How to Check Number Perfection] ( https://www.baeldung.com/java-number-perfection-test )
1413- More articles: [[ <-- prev]] ( /algorithms-miscellaneous-6 )
Original file line number Diff line number Diff line change 1313 <version >1.0.0-SNAPSHOT</version >
1414 </parent >
1515
16- <properties >
17- <jmh .version>1.35</jmh .version>
18- </properties >
19-
20- <dependencies >
21- <dependency >
22- <groupId >org.openjdk.jmh</groupId >
23- <artifactId >jmh-core</artifactId >
24- <version >${jmh.version} </version >
25- </dependency >
26- <dependency >
27- <groupId >org.openjdk.jmh</groupId >
28- <artifactId >jmh-generator-annprocess</artifactId >
29- <version >${jmh.version} </version >
30- </dependency >
31- </dependencies >
32-
3316</project >
Original file line number Diff line number Diff line change 1+ ### Relevant Articles:
2+
3+ - [ How to Check Number Perfection] ( https://www.baeldung.com/java-number-perfection-test )
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <artifactId >algorithms-numeric</artifactId >
7+ <version >0.0.1-SNAPSHOT</version >
8+ <name >algorithms-numeric</name >
9+
10+ <parent >
11+ <groupId >com.baeldung</groupId >
12+ <artifactId >algorithms-modules</artifactId >
13+ <version >1.0.0-SNAPSHOT</version >
14+ </parent >
15+
16+ <properties >
17+ <jmh .version>1.35</jmh .version>
18+ </properties >
19+
20+ <dependencies >
21+ <dependency >
22+ <groupId >org.openjdk.jmh</groupId >
23+ <artifactId >jmh-core</artifactId >
24+ <version >${jmh.version} </version >
25+ </dependency >
26+
27+ <dependency >
28+ <groupId >org.openjdk.jmh</groupId >
29+ <artifactId >jmh-generator-annprocess</artifactId >
30+ <version >${jmh.version} </version >
31+ </dependency >
32+ </dependencies >
33+
34+ </project >
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <configuration >
3+ <appender name =" STDOUT" class =" ch.qos.logback.core.ConsoleAppender" >
4+ <encoder >
5+ <pattern >%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
6+ </pattern >
7+ </encoder >
8+ </appender >
9+
10+ <root level =" INFO" >
11+ <appender-ref ref =" STDOUT" />
12+ </root >
13+ </configuration >
File renamed without changes.
Original file line number Diff line number Diff line change 2424 <module >algorithms-miscellaneous-7</module >
2525 <module >algorithms-miscellaneous-8</module >
2626 <module >algorithms-miscellaneous-9</module >
27+ <module >algorithms-numeric</module >
2728 <module >algorithms-searching</module >
2829 <module >algorithms-sorting</module >
2930 <module >algorithms-sorting-2</module >
You can’t perform that action at this time.
0 commit comments