|
56 | 56 | </Otherwise>
|
57 | 57 | </Choose>
|
58 | 58 | <ItemGroup>
|
59 |
| - <Compile Include="BitAlgorithms\AbsValue_Tests.cs" /> |
60 |
| - <Compile Include="BitAlgorithms\AddOne_Tests.cs" /> |
61 |
| - <Compile Include="BitAlgorithms\AddTwoNumbers_Tests.cs" /> |
62 | 59 | <Compile Include="BitAlgorithms\BaseConversion_Tests.cs" />
|
63 |
| - <Compile Include="BitAlgorithms\BinarySubsets_Tests.cs" /> |
64 | 60 | <Compile Include="BitAlgorithms\BitHacks_Tests.cs" />
|
65 |
| - <Compile Include="BitAlgorithms\BoolArrayPuzzle_Tests.cs" /> |
66 | 61 | <Compile Include="BitAlgorithms\CalcLogarithm_Tests.cs" />
|
67 |
| - <Compile Include="BitAlgorithms\CheckWordForZeroByte_Tests.cs" /> |
68 | 62 | <Compile Include="BitAlgorithms\DivisionModulus_Tests.cs" />
|
69 |
| - <Compile Include="BitAlgorithms\FindUniqueElement_Tests.cs" /> |
70 |
| - <Compile Include="BitAlgorithms\FlipBitForLongest1Seq_Tests.cs" /> |
71 | 63 | <Compile Include="BitAlgorithms\GCD_Tests.cs" />
|
72 |
| - <Compile Include="BitAlgorithms\InterleaveBits_Tests.cs" /> |
73 | 64 | <Compile Include="BitAlgorithms\IntToBinary_Tests.cs" />
|
74 | 65 | <Compile Include="BitAlgorithms\IsMultipleOfNine_Tests.cs" />
|
75 | 66 | <Compile Include="BitAlgorithms\IsMultipleOfThree_Tests.cs" />
|
76 |
| - <Compile Include="BitAlgorithms\MagicNumber_Tests.cs" /> |
77 |
| - <Compile Include="BitAlgorithms\MaxSubArrayXOR_Tests.cs" /> |
78 |
| - <Compile Include="BitAlgorithms\MinMaxOfTwoIntegers_Tests.cs" /> |
79 |
| - <Compile Include="BitAlgorithms\NextNumberWithSameSetBits_Tests.cs" /> |
80 | 67 | <Compile Include="BitAlgorithms\NextPowOfTwo_Tests.cs" />
|
81 |
| - <Compile Include="BitAlgorithms\NextSparseNumber_Tests.cs" /> |
82 |
| - <Compile Include="BitAlgorithms\ParityFinder_Tests.cs" /> |
83 |
| - <Compile Include="BitAlgorithms\ReverseBits_Tests.cs" /> |
84 |
| - <Compile Include="BitAlgorithms\SetBits_Tests.cs" /> |
85 |
| - <Compile Include="BitAlgorithms\SetBitsBigArray_Tests.cs" /> |
86 |
| - <Compile Include="BitAlgorithms\SumBitDiff_Tests.cs" /> |
87 |
| - <Compile Include="BitAlgorithms\SwapBits_Tests.cs" /> |
88 |
| - <Compile Include="BitAlgorithms\SwapOddEvenBits_Tests.cs" /> |
89 |
| - <Compile Include="BitAlgorithms\SwapWithoutTemp_Tests.cs" /> |
90 | 68 | <Compile Include="BitAlgorithms\ToggleCase_Tests.cs" />
|
91 |
| - <Compile Include="BitAlgorithms\TwoNonRepeatingNums_Tests.cs" /> |
92 |
| - <Compile Include="BitAlgorithms\TwoRepeatingNums_Tests.cs" /> |
93 | 69 | <Compile Include="Combinatorics\Subset_Tests.cs" />
|
94 | 70 | <Compile Include="Combinatorics\Variation_Tests.cs" />
|
95 | 71 | <Compile Include="Combinatorics\Combination_Tests.cs" />
|
|
123 | 99 | <Compile Include="DataStructures\Lists\ArrayList_Tests.cs" />
|
124 | 100 | <Compile Include="DataStructures\Lists\SkipList_Tests.cs" />
|
125 | 101 | <Compile Include="DataStructures\Queues\PriorityQueue\MaxPriorityQueue_Tests.cs" />
|
| 102 | + <Compile Include="DataStructures\Queues\CircularQueue_Tests.cs" /> |
126 | 103 | <Compile Include="DataStructures\Queues\Queue_Tests.cs" />
|
127 | 104 | <Compile Include="DataStructures\Set\BloomFilter_Tests.cs" />
|
128 | 105 | <Compile Include="DataStructures\Set\DisJointSet_Tests.cs" />
|
|
150 | 127 | <Compile Include="DataStructures\Tree\Tree_Tests.cs" />
|
151 | 128 | <Compile Include="DataStructures\Tree\BinaryTree_Tests.cs" />
|
152 | 129 | <Compile Include="Geometry\PointRotation_Tests.cs" />
|
153 |
| - <Compile Include="Miscellaneous\CountInversions_Tests.cs" /> |
154 | 130 | <Compile Include="Miscellaneous\MatrixMultiplication_Tests.cs" />
|
155 |
| - <Compile Include="DynamicProgramming\Maximizing\LongestChain_Tests.cs" /> |
156 |
| - <Compile Include="DynamicProgramming\Minimizing\AssemblyLineScheduling_Tests.cs" /> |
157 |
| - <Compile Include="DynamicProgramming\Maximizing\BoxStacking_Tests.cs" /> |
158 |
| - <Compile Include="DynamicProgramming\Maximizing\BuildingBridges_Tests.cs" /> |
159 |
| - <Compile Include="DynamicProgramming\Maximizing\BurstBalloon_Tests.cs" /> |
160 |
| - <Compile Include="DynamicProgramming\Count\CountBinaryTree_Tests.cs" /> |
161 |
| - <Compile Include="DynamicProgramming\Maximizing\CuttingRod_Tests.cs" /> |
162 |
| - <Compile Include="DynamicProgramming\Minimizing\MinArrayJumps_Tests.cs" /> |
163 |
| - <Compile Include="DynamicProgramming\Minimizing\MinEditDistance_Tests.cs" /> |
164 |
| - <Compile Include="DynamicProgramming\Minimizing\MinEggDrop_Tests.cs" /> |
165 |
| - <Compile Include="DynamicProgramming\Count\WaysToCover_Tests.cs" /> |
166 |
| - <Compile Include="DynamicProgramming\Matrix\MatrixMinCost_Tests.cs" /> |
167 |
| - <Compile Include="DynamicProgramming\Matrix\Max1sSquare_Tests.cs" /> |
168 |
| - <Compile Include="DynamicProgramming\Matrix\Max1sRectangle_Tests.cs" /> |
169 |
| - <Compile Include="DynamicProgramming\Matrix\MaxXSideSubSquare_Tests.cs" /> |
170 |
| - <Compile Include="DynamicProgramming\Maximizing\MaxProfitKTransactions_Tests.cs" /> |
171 |
| - <Compile Include="DynamicProgramming\OptimalBST_Tests.cs" /> |
172 |
| - <Compile Include="DynamicProgramming\OptimalGameStrategy_Tests.cs" /> |
173 |
| - <Compile Include="DynamicProgramming\Maximizing\PrintMaxAs_Tests.cs" /> |
174 |
| - <Compile Include="DynamicProgramming\Sequence\BalancedPartition_Tests.cs" /> |
175 |
| - <Compile Include="DynamicProgramming\Count\BoolParenthesis_Tests.cs" /> |
176 |
| - <Compile Include="DynamicProgramming\Count\CountDecodings_Test.cs" /> |
177 |
| - <Compile Include="DynamicProgramming\Maximizing\MaxSumSequence_Tests.cs" /> |
178 |
| - <Compile Include="DynamicProgramming\Maximizing\MaxSumIncreasingSequence_Tests.cs" /> |
179 |
| - <Compile Include="DynamicProgramming\Count\DiceThrow_Tests.cs" /> |
180 |
| - <Compile Include="DynamicProgramming\Sequence\DistinctBinaryString_Tests.cs" /> |
181 |
| - <Compile Include="DynamicProgramming\Fibornacci_Tests.cs" /> |
182 |
| - <Compile Include="DynamicProgramming\Maximizing\KnackSackProblems_Tests.cs" /> |
183 |
| - <Compile Include="DynamicProgramming\Minimizing\CoinChangeProblems_Tests.cs" /> |
184 |
| - <Compile Include="DynamicProgramming\Sequence\LongestBitonicSequence_Tests.cs" /> |
185 |
| - <Compile Include="DynamicProgramming\Sequence\LongestCommonSubSequence_Tests.cs" /> |
186 |
| - <Compile Include="DynamicProgramming\Sequence\LongestIncreasingSubSequence_Tests.cs" /> |
187 |
| - <Compile Include="DynamicProgramming\Palindrome\LongestPalindrome_Tests.cs" /> |
188 |
| - <Compile Include="DynamicProgramming\Matrix\ChainMultiplication_Tests.cs" /> |
189 |
| - <Compile Include="DynamicProgramming\Matrix\MaxSubMatrix_Tests.cs" /> |
190 |
| - <Compile Include="DynamicProgramming\Palindrome\PalindromeMinCut_Tests.cs" /> |
191 |
| - <Compile Include="DynamicProgramming\Palindrome\PalindromeMinDeletion_Tests.cs" /> |
192 |
| - <Compile Include="DynamicProgramming\Palindrome\ShortestPalindrome_Tests.cs" /> |
193 |
| - <Compile Include="DynamicProgramming\Count\StairCaseProblem_Tests.cs" /> |
194 |
| - <Compile Include="DynamicProgramming\String\StringInterleaving_Tests.cs" /> |
195 |
| - <Compile Include="DynamicProgramming\Sum\SubSetSum_Tests.cs" /> |
196 |
| - <Compile Include="DynamicProgramming\String\TextJustification_Tests.cs" /> |
197 |
| - <Compile Include="DynamicProgramming\TowerOfHanoi_Tests.cs" /> |
198 |
| - <Compile Include="DynamicProgramming\Maximizing\WeightedJobScheduling_Tests.cs" /> |
199 |
| - <Compile Include="DynamicProgramming\String\WildCardMatching_Tests.cs" /> |
200 |
| - <Compile Include="DynamicProgramming\String\WordBreak_Tests.cs" /> |
201 | 131 | <Compile Include="Geometry\ClosestPointPair_Tests.cs" />
|
202 | 132 | <Compile Include="Geometry\ConvexHull_Tests.cs" />
|
203 | 133 | <Compile Include="Geometry\PointInsidePolygon_Tests.cs" />
|
|
248 | 178 | <Compile Include="Sorting\ShellSort_Tests.cs" />
|
249 | 179 | <Compile Include="Sorting\SortAlmostSorted_Tests.cs" />
|
250 | 180 | <Compile Include="Sorting\TreeSort_Tests.cs" />
|
251 |
| - <Compile Include="Sorting\ZigZag_Tests.cs" /> |
252 | 181 | <Compile Include="String\Manachers_Tests.cs" />
|
253 | 182 | <Compile Include="String\Search\RabinKarp_Tests.cs" />
|
254 | 183 | <Compile Include="String\Search\KMP_Tests.cs" />
|
255 | 184 | <Compile Include="String\Search\Z_Tests.cs" />
|
256 |
| - <Compile Include="DynamicProgramming\Minimizing\TravellingSalesman_Tests.cs" /> |
257 | 185 | </ItemGroup>
|
258 | 186 | <ItemGroup>
|
259 | 187 | <ProjectReference Include="..\Advanced.Algorithms\Advanced.Algorithms.csproj">
|
|
0 commit comments