index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a690.py
blob: 118be49f31dfcc839d5f50f54af0c8d5e6376020 (
plain
)
1
2
3
4
5
def
check_isosceles
(
x
,
y
,
z
):
if
x
==
y
or
y
==
z
or
z
==
x
:
return
True
else
:
return
False