Skip to content

Commit

Permalink
Rename Recursion package (#6081)
Browse files Browse the repository at this point in the history
  • Loading branch information
alxkm authored Nov 3, 2024
1 parent 539871a commit 04bfaa8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 41 deletions.
37 changes: 0 additions & 37 deletions src/main/java/com/thealgorithms/others/FibbonaciSeries.java

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thealgorithms.Recursion;
package com.thealgorithms.recursion;

/*
The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thealgorithms.Recursion;
package com.thealgorithms.recursion;

// program to find power set of a string

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thealgorithms.Recursion;
package com.thealgorithms.recursion;

import static org.junit.jupiter.api.Assertions.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thealgorithms.Recursion;
package com.thealgorithms.recursion;

import static org.junit.jupiter.api.Assertions.assertArrayEquals;

Expand Down

0 comments on commit 04bfaa8

Please sign in to comment.