LeetPride makes for a beautiful problem solving and learning environment for test and timing data structures and algorithms. Happy Pride everyone and may the leet coding favor your fortune.
Project description
L
e
e
t
P
r
i
d
e
To make algorithm and data structure learning more exciting, colorful and enjoyable.
LeetPride interrogates the created classes and runs the tests specified to ensure success and optimize focus on problem-solving maximizing data structure an algorithm absorption, groking and satisfaction.
One time Setup
>simply install with
pip install LeetPride
LeetPride depends on modules listed in requirements.txt
It is recommended to create a venv and install the requirements.
python3 -m venv venv ./venv/scripts/activate python3 -m pip install -U pip python3 -m pip install -r requirements.txt
Screenshot of the 4 simple steps running in seconds.
Happy Problem Solving and Happy Pride !!
Quickly get going on given any problem by simply creating a py file to begin coding solutions starting with import then common python boilerplate for generating and running tests on solutions.
There are 4 basic simple setups to get going in seconds. The last is the code you will write and generally goes first, followed by generate_tests() and then the main boilierplate runners. Also, there are capabilities to easily test and time multiple method implementations and different class method call sequencing for class testing.
-
from leetpridecore import *
-
The standard main for running Class and Method solution tests is as follows:
def main() -> Optional[int] | None: tests_unified = generate_tests() lpc = LeetPrideCore(time_all=True) lpc.solution_hash_display(tests_unified) any_fail = lpc.run_tests(tests_unified) return completion_display(any_fail) if __name__ == '__main__': exit(main())
-
Example of required generate_tests() method using separate tests and expected results zipped together:
def generate_tests(): tests = (['Pride', 'loving', ], ['forever !', None, ]) expected_test_results = [True, 'LGBTQ Lover forever !!!!', ] return list(zip(tests[0], tests[1], expected_test_results))
-
-
A or B ( but supports mixing too even. )
A. Class - class questions generally entail verifying output of sequenced method calls:
class Pride: def __init__(self, always) self.love = always def love(sef, equality:str = 'forever') -> bool: return self.love == True
-
B. Method - general class Solution, so to align with LC practices:
class Solution: # @timeit def method1(self, nums: List[int], target: int) -> List[int | None]: return [nums[target]]
For either -method- or -class- solutions:
A few notes:
Instantiating the LeetCodeCore object takes an optional time_all bool parameter. -- If enabled to True, this will dynamically wrap any non @timeit wrapped methods designated for testing with a @timeit decorator and provide timing duration information detail.
Graphies and Linkies helper methods for easy test setup and printout of representations of node graphs, trees, and linked lists are being cleaned up and will be included in very near term update.
Enjoy!
Tallicia
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for LeetPride-0.6.9.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3aaa105a0feaaf5d34f801017bf50062357151be3111168735bf08aca2042db0 |
|
MD5 | 247880d8d0345cd7b08f75dbdc053453 |
|
BLAKE2b-256 | 183bd06693d44cab0bb4e41d7398ffa7ad449d0699e1036729879fa37911e639 |