Simple Interest

 1. Difference between simple interest & compound interest for 2 years = pr**2/100**2

2. Same for 3 years = pr**2(300+r)/100**3

3. Compound Interest > Simple Interest

4. Simple Interest = PTR/100

5. Amount = Principle + interest

6. Compound Interest = P(1+r/100)**n - p

Popular Post

MindMaps

Featured post

Question 1: Reverse Words in a String III

  def reverseWords(s: str) -> str: words = s.split() return ' '.join(word[::-1] for word in words)