Skip to content

Commit

Permalink
LeetCode #1209: Refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
eminencegrs committed Nov 26, 2024
1 parent 83a2662 commit 17979b8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

<ItemGroup>
<Folder Include="ClimbingStairs\" />
<Folder Include="Problems12xx\" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Text;

namespace LeetCode.Challenges.RemoveAdjacentDuplicates2;
namespace LeetCode.Challenges.Problems12xx.N_1209_RemoveAllAdjacentDuplicatesInStringII;

public class Solution
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

<ItemGroup>
<Folder Include="ClimbingStairs\" />
<Folder Include="Problems12xx\" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using LeetCode.Challenges.RemoveAdjacentDuplicates2;
using LeetCode.Challenges.Problems12xx.N_1209_RemoveAllAdjacentDuplicatesInStringII;
using Shouldly;
using Xunit;

namespace LeetCode.Challenges.UnitTests.RemoveAdjacentDuplicates2;
namespace LeetCode.Challenges.UnitTests.Problems12xx.N_1209_RemoveAllAdjacentDuplicatesInStringII;

public class SolutionTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections;

namespace LeetCode.Challenges.UnitTests.RemoveAdjacentDuplicates2;
namespace LeetCode.Challenges.UnitTests.Problems12xx.N_1209_RemoveAllAdjacentDuplicatesInStringII;

public class TestData : IEnumerable<object[]>
{
Expand Down

0 comments on commit 17979b8

Please sign in to comment.