diff options
author | braxtonhall | 2022-10-27 06:25:40 +0000 |
---|---|---|
committer | braxtonhall | 2022-10-27 06:25:40 +0000 |
commit | 19db075fb5c22e8a454cc9e8b3e07aff9355ef9c (patch) | |
tree | cfefbeb20d17343af3250532e2e784efb846ce9d | |
parent | 27b827cae18ec64e22de14379758fdf33f703fcd (diff) |
Add Alex
-rw-r--r-- | entries/alexanderjsummers/scala/Fib.scala | 7 | ||||
-rw-r--r-- | people.json | 11 |
2 files changed, 18 insertions, 0 deletions
diff --git a/entries/alexanderjsummers/scala/Fib.scala b/entries/alexanderjsummers/scala/Fib.scala new file mode 100644 index 0000000..bc25902 --- /dev/null +++ b/entries/alexanderjsummers/scala/Fib.scala @@ -0,0 +1,7 @@ +object Fib {
+ private val golden = (1 + Math.sqrt(5)) / 2;
+
+ def next(i:Long) : Long = {
+ Math.round(i.toDouble * golden)
+ }
+}
\ No newline at end of file diff --git a/people.json b/people.json index f1d8014..5532504 100644 --- a/people.json +++ b/people.json @@ -19,6 +19,17 @@ ] }, { + "github": "alexanderjsummers", + "name": "Alex Summers", + "title": "Associate Professor of Computer Science, UBC", + "entries": [ + { + "name": "golden", + "link": "./entries/alexanderjsummers/scala/Fib.scala" + } + ] + }, + { "github": "braxtonhall", "name": "Braxton Hall", "title": "MSc, UBC", |