This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import unittest | |
| from itertools import islice | |
| from itertools import cycle | |
| from math import factorial | |
| import solution | |
| class TestFibonacci(unittest.TestCase): | |
| def test_fibonacci(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import unittest | |
| import solution as s | |
| class ExtractTypeTest(unittest.TestCase): | |
| def test_aalabbalaa(self): | |
| input_ = [('a', 2), ('l', 1), ('error', 0), ('a', 1), ('b', 2), | |
| ('a', 1), ('l', 1), ('a', 2)] |