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
/
a234.py
blob: eaa9fed0bb9f8c045a38b96025107caab23d6ab7 (
plain
)
1
2
def
slope
(
x1
,
y1
,
x2
,
y2
):
return
(
float
)(
y2
-
y1
)
/
(
x2
-
x1
)