Ad
Fundamentals
Puzzles
Games

lol my first code here

Code
Diff
  • def minimal_square(a, b):
        return max(min(a, b)*2, max(a, b))**2    
    //This is cool//
    • def minimal_square(a, b):
    • return max(min(a, b)*2, max(a, b))**2
    • return max(min(a, b)*2, max(a, b))**2
    • //This is cool//