We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e4b60b commit 363f686Copy full SHA for 363f686
test_my_test.py
@@ -0,0 +1,2 @@
1
+def test_simple_math():
2
+ assert 2 + 2 == 4
test_palidrome.py
@@ -0,0 +1,9 @@
+from strings.palindrome import is_palindrome
+
3
4
+def test_palindrome_true():
5
+ assert is_palindrome("level") == True
6
7
8
+def test_palindrome_false():
9
+ assert is_palindrome("hello") == False
0 commit comments