about summary refs log tree commit diff
path: root/scratch/deepmind/part_two/todo.org
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-02-13T14·52+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-02-13T14·52+0000
commit9fa97eab671a3a926851840c3398b914c40e7e56 (patch)
tree4bddabd760ac91e74251dbfb72a4de90434436a6 /scratch/deepmind/part_two/todo.org
parent1f19080c7c0b47a812bd76368fac879e28533de1 (diff)
Solve merging-ranges
Write a function to merge meeting times. Added an in-place solution, which the
"Bonus" section suggested attempting to solve.

- Added some simple benchmarks to test the performance differences between the
  in-place and not-in-place variants. To my surprise, the in-place solution was
  consistently slower than the not-in-place solution.
Diffstat (limited to 'scratch/deepmind/part_two/todo.org')
-rw-r--r--scratch/deepmind/part_two/todo.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/scratch/deepmind/part_two/todo.org b/scratch/deepmind/part_two/todo.org
index 510073e6e2cd..a3a3df6ef1fe 100644
--- a/scratch/deepmind/part_two/todo.org
+++ b/scratch/deepmind/part_two/todo.org
@@ -1,5 +1,5 @@
 * Array and string manipulation
-** TODO Merging Meeting Times
+** DONE Merging Meeting Times
 ** DONE Reverse String in Place
 ** TODO Reverse Words
 ** TODO Merge Sorted Arrays