-
Notifications
You must be signed in to change notification settings - Fork 20.9k
Closed
Description
What would you like to share?
The Java repository contains duplicate implementations of the same algorithms, sometimes identical and sometimes with minor differences. This increases maintenance effort and reduces clarity.
Proposed task:
- Scan the entire Java repository for duplicate or near-duplicate algorithms.
- If implementations are identical, keep one and remove the others.
- If implementations differ but solve the same problem, merge them into a single, clean solution.
- Ensure the consolidated implementation is placed in the correct package, following existing conventions.
Additional information
No response
alejhomoreno and GziXnine