Skip to content

Commit

Permalink
Refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
eminencegrs committed Nov 27, 2024
1 parent 664a3b2 commit 4064744
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace LeetCode.Challenges.MaxProductSubarray;
namespace LeetCode.Challenges.Problems01xx.N_0152_MaximumProductSubarray;

// Time Complexity: O(n).
public class DynamicApproach
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace LeetCode.Challenges.MaxProductSubarray;
namespace LeetCode.Challenges.Problems01xx.N_0152_MaximumProductSubarray;

// Time Complexity: O(n).
public class TwoPassApproach
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using LeetCode.Challenges.MaxProductSubarray;
using LeetCode.Challenges.Problems01xx.N_0152_MaximumProductSubarray;
using Shouldly;
using Xunit;

namespace LeetCode.Challenges.UnitTests.MaxProductSubarray;
namespace LeetCode.Challenges.UnitTests.Problems01xx.N_0152_MaximumProductSubarray;

public class DynamicApproachTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using LeetCode.Challenges.MaxProductSubarray;
using LeetCode.Challenges.Problems01xx.N_0152_MaximumProductSubarray;
using Shouldly;
using Xunit;

namespace LeetCode.Challenges.UnitTests.MaxProductSubarray;
namespace LeetCode.Challenges.UnitTests.Problems01xx.N_0152_MaximumProductSubarray;

public class TwoPassApproachTests
{
Expand Down

0 comments on commit 4064744

Please sign in to comment.