In this project, the goal is to challenge your knowledge in using data structures on Codewars.
In this project, we ask you to solve these exercises on Codewars, but insert your solution here.
By inserting your solution, you can easily check your peers' solution on reviews, by running tests.
Speaking about tests! You can find a class named like Test and some other seemingly odd and new code snippets. These are ONLY there to help you check your solution, you don't need to worry about them!
- Use data structures (lists, dictionary, etc.).
- Solve algorithmic challenges.
-
Train on the challenge My Language on Codewars.
- There is a solution inserted in the
my-language.pyfile. - There is a solution submitted on Codewars.
- There is a succesful solution submitted, where all tests pass.
- There is a solution inserted in the
-
Train on the challenge My head is at the wrong end! on Codewars.
- There is a solution inserted in the
fix-the-meerkat.pyfile. - There is a solution submitted on Codewars.
- There is a succesful solution submitted, where all tests pass.
- There is a solution inserted in the
-
Train on the challenge Nth smallest element on Codewars.
- There is a solution inserted in the
n-th-smallest.pyfile. - There is a solution submitted on Codewars.
- There is a succesful solution submitted, where all tests pass.
- There is a solution inserted in the
-
Train on the challenge Maximum Multiple on Codewars.
- There is a solution inserted in the
maximum-multiple.pyfile. - There is a solution submitted on Codewars.
- There is a succesful solution submitted, where all tests pass.
- There is a solution inserted in the
-
Train on the challenge Thinkful-List Drills - Longest word on Codewars.
- There is a solution inserted in the
longest.pyfile. - There is a solution submitted on Codewars.
- There is a succesful solution submitted, where all tests pass.
- There is a solution inserted in the
None
- You can test your solution of the
My Languagekata after inserting your solution inmy-language.pyby running the following:python -m unittest my-language.TestMyLanguage.test_basics - You can test your solution of the
My head is at the wrong end!kata after inserting your solution infix-the-meerkat.pyby running the following:python -m unittest fix-the-meerkat.TestFixTheMeerkat.test_basics - You can test your solution of the
Nth smallest elementkata after inserting your solution inn-th-smallest.pyby running the following:python -m unittest n-th-smallest.TestNthSmallest.test_basics - You can test your solution of the
Maximum Multiplekata after inserting your solution inmaximum-multiple.pyby running the following:python -m unittest maximum-multiple.TestMaximumMultiple.test_basics - You can test your solution of the
Thinkful-List Drills - Longest wordkata after inserting your solution inlongest.pyby running the following:python -m unittest longest.TestLongest.test_basics