Skip to content

Commit af1488c

Browse files
committed
style: remove trailing whitespaces in Javadocs
1 parent 8657ea3 commit af1488c

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

src/main/java/com/thealgorithms/dynamicprogramming/Fibonacci.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
package com.thealgorithms.dynamicprogramming;
2-
32
import java.util.HashMap;
43
import java.util.Map;
5-
64
/**
75
* Collection of Dynamic Programming techniques to solve for the n-th Fibonacci number.
86
* <p>
9-
* This file showcases Top-Down Memoization ({@code fibMemo}), Bottom-Up Tabulation ({@code fibBotUp}),
7+
* This file showcases Top-Down Memoization ({@code fibMemo}), Bottom-Up Tabulation ({@code fibBotUp}),
108
* and Space-Optimized Iteration ({@code fibOptimized}).
119
* <p>
1210
* For alternative structural paradigms, mathematical formulas, or verification steps, see:

src/main/java/com/thealgorithms/maths/FibonacciLoop.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
package com.thealgorithms.maths;
2-
32
import java.math.BigInteger;
4-
53
/**
64
* This class provides methods for calculating Fibonacci numbers using BigInteger for large values of 'n'.
75
* <p>
8-
* This specific implementation uses an <b>Iterative approach (Loop)</b> with {@code O(n)} time complexity
6+
* This specific implementation uses an <b>Iterative approach (Loop)</b> with {@code O(n)} time complexity
97
* and {@code O(1)} space complexity.
108
* <p>
119
* For alternative approaches to compute or verify Fibonacci numbers, see:

0 commit comments

Comments
 (0)