This website works better with JavaScript.
首頁
說明
登入
ben
/
func-smash
镜像来自
https://github.com/earwig/func-smash
關註
1
收藏
1
複製
0
程式碼
版本發佈
0
Activity
瀏覽代碼
Adding maths corpus
master
Ben Kurtovic
12 年之前
父節點
59eaf62931
當前提交
62a9e9c2c3
共有
1 個文件被更改
,包括
25 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+25
-0
corpora/maths.py
+ 25
- 0
corpora/maths.py
查看文件
@@ -0,0 +1,25 @@
def f1(a):
b = a + 9.0
return b
def f2(a):
b = a - 7.0
return b
def f3(a):
b = a * 5.0
return b
def f4(a):
b = a / 3.0
return b
def f5(a):
b = a ** 2.0
return b
def f6(a):
b = a % 10.0
return b
corpus = [f1, f2, f3, f4, f5, f6]
Write
Preview
Loading…
取消
儲存