aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2022-03-28 20:40:03 -0500
committerAnthony Wang2022-03-28 20:40:03 -0500
commit556149c189ecd57dc6075129c954bf2add3a0147 (patch)
tree29f5889e2e2d6fca119f000b746aa035ceee3628
parent252e4ae4ddfb8870aec54ad16424e83d1c7f95d3 (diff)
Add note to README about possible C port
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 915d9fd..c37adb6 100644
--- a/README.md
+++ b/README.md
@@ -5,3 +5,5 @@ Very efficient flash cards app using Go and SQLite
## Performance
SD is designed to be extremely efficient in order to support a very large number of flash cards and should be able to handle several billion cards with ease. If `N` is the number of cards, initializing the program requires `O(N)` time and `O(N)` memory. Selecting a random card and adjusting its weight based on if the user got it correct requires `O(log N)` time.
+
+A C port is planned but will probably never happen.