From 195977223772089529c8155edc6e101cb3e38dc4 Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Sun, 9 Aug 2015 07:38:58 -0400 Subject: [PATCH] Added TODO to include more optimal solutions to maximizing xor challenge. --- online_judges/maximizing_xor/maximizing_xor_solution.ipynb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/online_judges/maximizing_xor/maximizing_xor_solution.ipynb b/online_judges/maximizing_xor/maximizing_xor_solution.ipynb index 22f791a..d52e5e1 100644 --- a/online_judges/maximizing_xor/maximizing_xor_solution.ipynb +++ b/online_judges/maximizing_xor/maximizing_xor_solution.ipynb @@ -60,8 +60,11 @@ "* return max\n", "\n", "Complexity:\n", - "* Time: O(n^2)\n", - "* Space: O(1)" + "* Time: O(n^2) - See note below\n", + "* Space: O(1)\n", + "\n", + "Note:\n", + "* TODO: Add more optimal solutions such as those discussed [here](https://www.hackerrank.com/challenges/maximizing-xor/editorial)." ] }, {