|
| 1 | +com.thealgorithms.ciphers.AES=UselessMainMethod |
| 2 | +com.thealgorithms.ciphers.AESEncryption=UselessMainMethod |
1 | 3 | com.thealgorithms.ciphers.AffineCipher=UselessParentheses
|
2 | 4 | com.thealgorithms.ciphers.DES=UselessParentheses
|
| 5 | +com.thealgorithms.ciphers.ProductCipher=UselessMainMethod |
3 | 6 | com.thealgorithms.ciphers.RSA=UselessParentheses
|
4 |
| -com.thealgorithms.conversions.AnyBaseToAnyBase=UselessParentheses |
| 7 | +com.thealgorithms.conversions.AnyBaseToAnyBase=UselessMainMethod,UselessParentheses |
5 | 8 | com.thealgorithms.conversions.AnytoAny=UselessParentheses
|
| 9 | +com.thealgorithms.conversions.RgbHsvConversion=UselessMainMethod |
6 | 10 | com.thealgorithms.datastructures.crdt.Pair=UnusedPrivateField
|
7 | 11 | com.thealgorithms.datastructures.graphs.AStar=UselessParentheses
|
8 | 12 | com.thealgorithms.datastructures.graphs.AdjacencyMatrixGraph=CollapsibleIfStatements,UnnecessaryFullyQualifiedName,UselessParentheses
|
| 13 | +com.thealgorithms.datastructures.graphs.BellmanFord=UselessMainMethod |
9 | 14 | com.thealgorithms.datastructures.graphs.BipartiteGraphDFS=CollapsibleIfStatements
|
| 15 | +com.thealgorithms.datastructures.graphs.ConnectedComponent=UselessMainMethod |
| 16 | +com.thealgorithms.datastructures.graphs.Cycles=UselessMainMethod |
| 17 | +com.thealgorithms.datastructures.graphs.Graphs=UselessMainMethod |
| 18 | +com.thealgorithms.datastructures.graphs.KahnsAlgorithm=UselessMainMethod |
| 19 | +com.thealgorithms.datastructures.graphs.MatrixGraphs=UselessMainMethod |
10 | 20 | com.thealgorithms.datastructures.hashmap.hashing.HashMapCuckooHashing=UselessParentheses
|
| 21 | +com.thealgorithms.datastructures.hashmap.hashing.MainCuckooHashing=UselessMainMethod |
11 | 22 | com.thealgorithms.datastructures.heaps.FibonacciHeap=UselessParentheses
|
12 | 23 | com.thealgorithms.datastructures.heaps.HeapNode=UselessParentheses
|
13 | 24 | com.thealgorithms.datastructures.lists.DoublyLinkedList=UselessParentheses
|
| 25 | +com.thealgorithms.datastructures.lists.Link=UselessMainMethod |
| 26 | +com.thealgorithms.datastructures.lists.RandomNode=UselessMainMethod |
14 | 27 | com.thealgorithms.datastructures.lists.SearchSinglyLinkedListRecursion=UselessParentheses
|
15 |
| -com.thealgorithms.datastructures.lists.SinglyLinkedList=UnusedLocalVariable |
| 28 | +com.thealgorithms.datastructures.lists.SinglyLinkedList=UnusedLocalVariable,UselessMainMethod |
| 29 | +com.thealgorithms.datastructures.queues.Deque=UselessMainMethod |
16 | 30 | com.thealgorithms.datastructures.queues.PriorityQueue=UselessParentheses
|
| 31 | +com.thealgorithms.datastructures.trees.BSTRecursiveGeneric=UselessMainMethod |
17 | 32 | com.thealgorithms.datastructures.trees.CheckBinaryTreeIsValidBST=UselessParentheses
|
| 33 | +com.thealgorithms.datastructures.trees.LCA=UselessMainMethod |
| 34 | +com.thealgorithms.datastructures.trees.NearestRightKey=UselessMainMethod |
| 35 | +com.thealgorithms.datastructures.trees.PrintTopViewofTree=UselessMainMethod |
18 | 36 | com.thealgorithms.datastructures.trees.SegmentTree=UselessParentheses
|
19 | 37 | com.thealgorithms.devutils.nodes.LargeTreeNode=UselessParentheses
|
20 | 38 | com.thealgorithms.devutils.nodes.SimpleNode=UselessParentheses
|
21 | 39 | com.thealgorithms.devutils.nodes.SimpleTreeNode=UselessParentheses
|
22 | 40 | com.thealgorithms.devutils.nodes.TreeNode=UselessParentheses
|
23 |
| -com.thealgorithms.divideandconquer.ClosestPair=UnnecessaryFullyQualifiedName,UselessParentheses |
| 41 | +com.thealgorithms.divideandconquer.ClosestPair=UnnecessaryFullyQualifiedName,UselessMainMethod,UselessParentheses |
24 | 42 | com.thealgorithms.divideandconquer.Point=UselessParentheses
|
| 43 | +com.thealgorithms.dynamicprogramming.CatalanNumber=UselessMainMethod |
| 44 | +com.thealgorithms.dynamicprogramming.EggDropping=UselessMainMethod |
| 45 | +com.thealgorithms.dynamicprogramming.LongestPalindromicSubsequence=UselessMainMethod |
25 | 46 | com.thealgorithms.dynamicprogramming.WineProblem=UselessParentheses
|
26 | 47 | com.thealgorithms.maths.BinomialCoefficient=UselessParentheses
|
27 | 48 | com.thealgorithms.maths.Complex=UselessParentheses
|
28 | 49 | com.thealgorithms.maths.DistanceFormulaTest=UnnecessaryFullyQualifiedName
|
| 50 | +com.thealgorithms.maths.EulerMethod=UselessMainMethod |
| 51 | +com.thealgorithms.maths.GCDRecursion=UselessMainMethod |
29 | 52 | com.thealgorithms.maths.Gaussian=UselessParentheses
|
30 | 53 | com.thealgorithms.maths.GcdSolutionWrapper=UselessParentheses
|
31 | 54 | com.thealgorithms.maths.HeronsFormula=UselessParentheses
|
| 55 | +com.thealgorithms.maths.JugglerSequence=UselessMainMethod |
32 | 56 | com.thealgorithms.maths.KaprekarNumbers=UselessParentheses
|
33 |
| -com.thealgorithms.maths.KeithNumber=UselessParentheses |
| 57 | +com.thealgorithms.maths.KeithNumber=UselessMainMethod,UselessParentheses |
34 | 58 | com.thealgorithms.maths.LeonardoNumber=UselessParentheses
|
35 |
| -com.thealgorithms.maths.LinearDiophantineEquationsSolver=UselessParentheses |
| 59 | +com.thealgorithms.maths.LinearDiophantineEquationsSolver=UselessMainMethod,UselessParentheses |
| 60 | +com.thealgorithms.maths.MagicSquare=UselessMainMethod |
| 61 | +com.thealgorithms.maths.PiNilakantha=UselessMainMethod |
| 62 | +com.thealgorithms.maths.Prime.PrimeCheck=UselessMainMethod |
| 63 | +com.thealgorithms.maths.PythagoreanTriple=UselessMainMethod |
36 | 64 | com.thealgorithms.maths.RomanNumeralUtil=UselessParentheses
|
37 | 65 | com.thealgorithms.maths.SecondMinMax=UselessParentheses
|
38 | 66 | com.thealgorithms.maths.SecondMinMaxTest=UnnecessaryFullyQualifiedName
|
| 67 | +com.thealgorithms.maths.SimpsonIntegration=UselessMainMethod |
39 | 68 | com.thealgorithms.maths.StandardDeviation=UselessParentheses
|
40 | 69 | com.thealgorithms.maths.SumOfArithmeticSeries=UselessParentheses
|
41 |
| -com.thealgorithms.maths.TrinomialTriangle=UselessParentheses |
| 70 | +com.thealgorithms.maths.TrinomialTriangle=UselessMainMethod,UselessParentheses |
| 71 | +com.thealgorithms.maths.VectorCrossProduct=UselessMainMethod |
42 | 72 | com.thealgorithms.maths.Volume=UselessParentheses
|
| 73 | +com.thealgorithms.matrix.RotateMatrixBy90Degrees=UselessMainMethod |
43 | 74 | com.thealgorithms.misc.Sparsity=UselessParentheses
|
44 |
| -com.thealgorithms.others.CRC16=UselessParentheses |
45 |
| -com.thealgorithms.others.Damm=UnnecessaryFullyQualifiedName |
46 |
| -com.thealgorithms.others.Luhn=UnnecessaryFullyQualifiedName |
47 |
| -com.thealgorithms.others.Mandelbrot=UselessParentheses |
48 |
| -com.thealgorithms.others.MiniMaxAlgorithm=UselessParentheses |
49 |
| -com.thealgorithms.others.PageRank=UselessParentheses |
50 |
| -com.thealgorithms.others.PerlinNoise=UselessParentheses |
| 75 | +com.thealgorithms.others.BankersAlgorithm=UselessMainMethod |
| 76 | +com.thealgorithms.others.BrianKernighanAlgorithm=UselessMainMethod |
| 77 | +com.thealgorithms.others.CRC16=UselessMainMethod,UselessParentheses |
| 78 | +com.thealgorithms.others.CRC32=UselessMainMethod |
| 79 | +com.thealgorithms.others.Damm=UnnecessaryFullyQualifiedName,UselessMainMethod |
| 80 | +com.thealgorithms.others.Dijkstra=UselessMainMethod |
| 81 | +com.thealgorithms.others.GaussLegendre=UselessMainMethod |
| 82 | +com.thealgorithms.others.HappyNumbersSeq=UselessMainMethod |
| 83 | +com.thealgorithms.others.Huffman=UselessMainMethod |
| 84 | +com.thealgorithms.others.InsertDeleteInArray=UselessMainMethod |
| 85 | +com.thealgorithms.others.KochSnowflake=UselessMainMethod |
| 86 | +com.thealgorithms.others.Krishnamurthy=UselessMainMethod |
| 87 | +com.thealgorithms.others.LinearCongruentialGenerator=UselessMainMethod |
| 88 | +com.thealgorithms.others.Luhn=UnnecessaryFullyQualifiedName,UselessMainMethod |
| 89 | +com.thealgorithms.others.Mandelbrot=UselessMainMethod,UselessParentheses |
| 90 | +com.thealgorithms.others.MiniMaxAlgorithm=UselessMainMethod,UselessParentheses |
| 91 | +com.thealgorithms.others.PageRank=UselessMainMethod,UselessParentheses |
| 92 | +com.thealgorithms.others.PerlinNoise=UselessMainMethod,UselessParentheses |
51 | 93 | com.thealgorithms.others.QueueUsingTwoStacks=UselessParentheses
|
52 |
| -com.thealgorithms.others.Trieac=UselessParentheses |
53 |
| -com.thealgorithms.others.Verhoeff=UnnecessaryFullyQualifiedName |
| 94 | +com.thealgorithms.others.Trieac=UselessMainMethod,UselessParentheses |
| 95 | +com.thealgorithms.others.Verhoeff=UnnecessaryFullyQualifiedName,UselessMainMethod |
| 96 | +com.thealgorithms.puzzlesandgames.Sudoku=UselessMainMethod |
| 97 | +com.thealgorithms.searches.HowManyTimesRotated=UselessMainMethod |
54 | 98 | com.thealgorithms.searches.InterpolationSearch=UselessParentheses
|
55 | 99 | com.thealgorithms.searches.KMPSearch=UselessParentheses
|
56 | 100 | com.thealgorithms.searches.RabinKarpAlgorithm=UselessParentheses
|
| 101 | +com.thealgorithms.searches.RecursiveBinarySearch=UselessMainMethod |
| 102 | +com.thealgorithms.sorts.BogoSort=UselessMainMethod |
57 | 103 | com.thealgorithms.sorts.CircleSort=EmptyControlStatement
|
58 | 104 | com.thealgorithms.sorts.DutchNationalFlagSort=UselessParentheses
|
59 | 105 | com.thealgorithms.sorts.MergeSortNoExtraSpace=UselessParentheses
|
60 | 106 | com.thealgorithms.sorts.RadixSort=UselessParentheses
|
| 107 | +com.thealgorithms.sorts.TreeSort=UselessMainMethod |
61 | 108 | com.thealgorithms.sorts.WiggleSort=UselessParentheses
|
| 109 | +com.thealgorithms.stacks.LargestRectangle=UselessMainMethod |
| 110 | +com.thealgorithms.stacks.MaximumMinimumWindow=UselessMainMethod |
62 | 111 | com.thealgorithms.stacks.PostfixToInfix=UselessParentheses
|
| 112 | +com.thealgorithms.strings.Alphabetical=UselessMainMethod |
63 | 113 | com.thealgorithms.strings.HorspoolSearch=UnnecessaryFullyQualifiedName,UselessParentheses
|
| 114 | +com.thealgorithms.strings.KMP=UselessMainMethod |
| 115 | +com.thealgorithms.strings.Lower=UselessMainMethod |
64 | 116 | com.thealgorithms.strings.Palindrome=UselessParentheses
|
| 117 | +com.thealgorithms.strings.Pangram=UselessMainMethod |
| 118 | +com.thealgorithms.strings.RabinKarp=UselessMainMethod |
| 119 | +com.thealgorithms.strings.Rotation=UselessMainMethod |
| 120 | +com.thealgorithms.strings.Upper=UselessMainMethod |
0 commit comments