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-18T14·17+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-02-19T15·01+0000
commitacf1b8c4f046a36a387af1120f5d0744f95c4aa3 (patch)
tree27ecfa77970a55b90e479c873d544ea7b3ad20bb /scratch/deepmind/part_two/todo.org
parent9fc29831e0a82ed8fd156f5210721df4124eeb20 (diff)
Solve InterviewCake's reverse-words
Wrote a function to reverse the words in a list of characters. A word is a
space-delimited strings of characters.

The trick here is to first reverse the entire string and then reverse each word
individually.
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 a3a3df6ef1fe..91fd3fbf2c1c 100644
--- a/scratch/deepmind/part_two/todo.org
+++ b/scratch/deepmind/part_two/todo.org
@@ -1,7 +1,7 @@
 * Array and string manipulation
 ** DONE Merging Meeting Times
 ** DONE Reverse String in Place
-** TODO Reverse Words
+** DONE Reverse Words
 ** TODO Merge Sorted Arrays
 ** TODO Cafe Order Checker
 * Hashing and hash tables