tvl-depot/deepmind/part_one/efficiency.org
William Carroll 5df3bb4e40 Partition deepmind directory into two parts
Since I did not pass my one-site interview with DM, but I have been invited to
attempt again, I decided to partition this directory into two parts:
1. part_one: Hosting the exercises that I completed before my first attempt at
   earning the job.
2. part_two: Hosting the exercise that I will complete before my second attempt
   at earning the job.
2020-02-06 16:56:06 +00:00

6 lines
109 B
Org Mode

* Sorting
** Merge: O(n*log(n))
** Heap: O(n*log(n))
** Insertion: O(n^2)
** Quick: O(n^2)
** Bubble: O(n^2)