Skip to content

Instantly share code, notes, and snippets.

View vigneshsarma's full-sized avatar

Vignesh Sarma K vigneshsarma

View GitHub Profile
@vigneshsarma
vigneshsarma / double_squre.py
Created September 19, 2011 15:08
Double Squre
import math
def isSuperSqure(n):
hlf=int(math.sqrt(n))
start=0
count=0
while(hlf>=start):
if((start+hlf)<=n):
no=(start**2)+(hlf**2)
if(no>n):