Skip to content

Commit 6dccef2

Browse files
authored
[JAVA-41849] Moving some article links on Github - core-java-lang-math (#18258)
1 parent 04876cf commit 6dccef2

File tree

26 files changed

+310
-109
lines changed

26 files changed

+310
-109
lines changed

core-java-modules/core-java-lang-math-2/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
- [Calculate Factorial in Java](https://www.baeldung.com/java-calculate-factorial)
88
- [Check if Two Rectangles Overlap in Java](https://www.baeldung.com/java-check-if-two-rectangles-overlap)
9-
- [Calculate the Distance Between Two Points in Java](https://www.baeldung.com/java-distance-between-two-points)
109
- [Find the Intersection of Two Lines in Java](https://www.baeldung.com/java-intersection-of-two-lines)
1110
- [Round Up to the Nearest Hundred in Java](https://www.baeldung.com/java-round-up-nearest-hundred)
1211
- [Convert Latitude and Longitude to a 2D Point in Java](https://www.baeldung.com/java-convert-latitude-longitude)

core-java-modules/core-java-lang-math-3/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,11 @@
44

55
### Relevant articles:
66

7-
- [Evaluating a Math Expression in Java](https://www.baeldung.com/java-evaluate-math-expression-string)
8-
- [Swap Two Variables in Java](https://www.baeldung.com/java-swap-two-variables)
97
- [Java Program to Find the Roots of a Quadratic Equation](https://www.baeldung.com/roots-quadratic-equation)
108
- [Java Program to Calculate the Standard Deviation](https://www.baeldung.com/java-calculate-standard-deviation)
119
- [Java Program to Print Pascal’s Triangle](https://www.baeldung.com/java-pascal-triangle)
12-
- [Java Money and the Currency API](http://www.baeldung.com/java-money-and-currency)
1310
- [Clamp Function in Java](https://www.baeldung.com/java-clamp-function)
1411
- [Creating a Magic Square in Java](https://www.baeldung.com/java-magic-square)
1512
- [Validate if a String Is a Valid Geo Coordinate](https://www.baeldung.com/java-geo-coordinates-validation)
1613
- [Calculating the Power of Any Number in Java Without Using Math pow() Method](https://www.baeldung.com/java-calculating-the-power-without-math-pow)
17-
- More articles: [[<-- Prev]](/core-java-modules/core-java-lang-math-2)
14+
- More articles: [[<-- Prev]](/core-java-modules/core-java-lang-math-2)[[Next -->]](/core-java-modules/core-java-lang-math-4)

core-java-modules/core-java-lang-math-3/pom.xml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,4 @@
1212
<version>0.0.1-SNAPSHOT</version>
1313
</parent>
1414

15-
<dependencies>
16-
<dependency>
17-
<groupId>net.objecthunter</groupId>
18-
<artifactId>exp4j</artifactId>
19-
<version>${exp4j.version}</version>
20-
</dependency>
21-
<dependency>
22-
<groupId>com.fathzer</groupId>
23-
<artifactId>javaluator</artifactId>
24-
<version>${javaluator.version}</version>
25-
</dependency>
26-
<dependency>
27-
<groupId>org.javamoney</groupId>
28-
<artifactId>moneta</artifactId>
29-
<version>${javamoney.moneta.version}</version>
30-
</dependency>
31-
</dependencies>
32-
33-
<properties>
34-
<exp4j.version>0.4.8</exp4j.version>
35-
<javaluator.version>3.0.3</javaluator.version>
36-
<javamoney.moneta.version>1.1</javamoney.moneta.version>
37-
</properties>
38-
3915
</project>

core-java-modules/core-java-lang-math-4/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
- [Calculate Percentage Difference Between Two Numbers in Java](https://www.baeldung.com/java-percentage-difference)
1111
- [Why Is 2 * (i * i) Faster Than 2 * i * i in Java?](https://www.baeldung.com/java-performance-2-i-i-multiplication)
1212
- [How to Check if Multiplying Two Numbers in Java Will Cause an Overflow](https://www.baeldung.com/java-multiply-numbers-overflow)
13+
- [Java Unsigned Arithmetic Support](https://www.baeldung.com/java-unsigned-arithmetic)
14+
- More articles: [[<-- Prev]](/core-java-modules/core-java-lang-math-3)[[Next -->]](/core-java-modules/core-java-lang-math-5)
15+
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package com.baeldung.java8;
22

3-
import org.junit.Test;
4-
53
import static org.assertj.core.api.Assertions.assertThat;
64
import static org.assertj.core.api.Assertions.catchThrowable;
75
import static org.junit.Assert.assertEquals;
86

7+
import org.junit.Test;
8+
99
public class UnsignedArithmeticUnitTest {
1010
@Test
1111
public void whenDoublingALargeByteNumber_thenOverflow() {
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
### Relevant articles:
3+
4+
- [Calculating Logarithms in Java](https://www.baeldung.com/java-logarithms)
5+
- [Finding Greatest Common Divisor in Java](https://www.baeldung.com/java-greatest-common-divisor)
6+
- [Obtaining a Power Set of a Set in Java](https://www.baeldung.com/java-power-set-of-a-set)
7+
- [Basic Calculator in Java](https://www.baeldung.com/java-basic-calculator)
8+
- [Java 8 Math New Methods](https://www.baeldung.com/java-8-math)
9+
- More articles: [[<-- Prev]](/core-java-modules/core-java-lang-math-4)
10+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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>core-java-lang-math-5</artifactId>
7+
<name>core-java-lang-math-5</name>
8+
9+
<parent>
10+
<groupId>com.baeldung.core-java-modules</groupId>
11+
<artifactId>core-java-modules</artifactId>
12+
<version>0.0.1-SNAPSHOT</version>
13+
</parent>
14+
15+
</project>

0 commit comments

Comments
 (0)