Question: 
Write a python function to find the sum of squares of first n odd natural numbers.


Model's Code:
def square_Sum(n):
    return sum((2*i + 1) ** 2 for i in range(n))



Sample Correct Code:
def square_Sum(n):  
    return int(n*(4*n*n-1)/3) 


Asserts:
assert square_Sum(2) == 10
assert square_Sum(3) == 35
assert square_Sum(4) == 84


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 267 of 974: 192/267 (71.91011235955057%): success