aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--entries/nxjfxu/fib.hs5
-rw-r--r--people.json11
2 files changed, 16 insertions, 0 deletions
diff --git a/entries/nxjfxu/fib.hs b/entries/nxjfxu/fib.hs
new file mode 100644
index 0000000..0f0d871
--- /dev/null
+++ b/entries/nxjfxu/fib.hs
@@ -0,0 +1,5 @@
+fib :: Int -> Int
+fib = (fibs !!)
+ where
+ fibs = 0 : 1 : [fibs !! (i - 2) + fibs !! (i - 1) | i <- [2..]]
+
diff --git a/people.json b/people.json
index b957009..67fb11d 100644
--- a/people.json
+++ b/people.json
@@ -223,6 +223,17 @@
]
},
{
+ "github": "nxjfxu",
+ "name": "Junfeng Xu",
+ "title": "MSc Student, UBC",
+ "entries": [
+ {
+ "name": "ouroboros",
+ "link": "./entries/nxjfxu/fib.hs"
+ }
+ ]
+ },
+ {
"github": "zgrannan",
"name": "Zack Grannan",
"title": "MSc Computer Science Student, UBC",