Skip to main content

All Questions

3 votes
1 answer
83 views

Python's OOP for Calculating Growth of Money

I am making an OOP to calculate growth of money according to theory of interest. I have made 3 classes: Contribution which contain data of a deposit and its growth, ...
Redsbefall's user avatar
  • 1,132
7 votes
1 answer
1k views

Python - A Numeric Matrix Calculator/Processor

it's the second object oriented program i've worked on, more details on https://hyperskill.org/projects/96?goal=391. I've added as much documentation as needed, as a first time, to explain each ...
Anonymous's user avatar
  • 1,224
4 votes
1 answer
142 views

Meta-circular interpreter for lambda calculus in Python

For learning purpose, I've written a simple lambda calculus interpreter (plus 'Add'). I would like it to be the cleanest and most idiomatic possible. Can we make it as neat as the Haskell version? <...
YvesgereY's user avatar
  • 428
5 votes
1 answer
2k views

Extending Polynomial Class with math operations

Background After seeing a random coding interview question "write a program that can take the derivative of a polynomial", I decided to solve the problem using an OOP approach in Python. Then, I ...
Vivek Jha's user avatar
  • 297