Skip to content

Commit b2c1c1a

Browse files
authored
Improved format
1 parent 89650e2 commit b2c1c1a

File tree

7 files changed

+0
-12
lines changed

7 files changed

+0
-12
lines changed

src/main/python/g0101_0200/s0151_reverse_words_in_a_string/Solution0151_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import unittest
22
from Solution0151 import Solution
33

4-
54
class SolutionTest(unittest.TestCase):
65
def test_reverseWords(self):
76
self.assertEqual(Solution().reverseWords("the sky is blue"), "blue is sky the")

src/main/python/g0101_0200/s0190_reverse_bits/Solution0190_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import unittest
22
from Solution0190 import Solution
33

4-
54
class SolutionTest(unittest.TestCase):
65
def test_reverseBits(self):
76
self.assertEqual(

src/main/python/g0501_0600/s0560_subarray_sum_equals_k/Solution0560_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import unittest
22
from Solution0560 import Solution
33

4-
import unittest
5-
64
class SolutionTest(unittest.TestCase):
75
def setUp(self):
86
self.solution = Solution()

src/main/python/g0601_0700/s0647_palindromic_substrings/Solution0647_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import unittest
22
from Solution0647 import Solution
33

4-
import unittest
5-
64
class SolutionTest(unittest.TestCase):
75
def setUp(self):
86
self.solution = Solution()

src/main/python/g0701_0800/s0739_daily_temperatures/Solution0739_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import unittest
22
from Solution0739 import Solution
33

4-
import unittest
5-
64
class SolutionTest(unittest.TestCase):
75
def setUp(self):
86
self.solution = Solution()

src/main/python/g0701_0800/s0763_partition_labels/Solution0763_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import unittest
22
from Solution0763 import Solution
33

4-
import unittest
5-
64
class SolutionTest(unittest.TestCase):
75
def setUp(self):
86
self.solution = Solution()

src/main/python/g1101_1200/s1143_longest_common_subsequence/Solution1143_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import unittest
22
from Solution1143 import Solution
33

4-
import unittest
5-
64
class SolutionTest(unittest.TestCase):
75
def setUp(self):
86
self.solution = Solution()

0 commit comments

Comments
 (0)