From af0c029696d8a13afc13f2fd98e301bab9990cb9 Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Sun, 28 Jun 2015 07:13:27 -0400 Subject: [PATCH] Renamed section Constraints and Assumptions to Constraints. --- arrays_strings/compress/compress.ipynb | 2 +- arrays_strings/hash_map/hash_map.ipynb | 2 +- arrays_strings/permutation/permutation.ipynb | 2 +- arrays_strings/replace_char/replace_char.ipynb | 2 +- arrays_strings/reverse_string/reverse_string.ipynb | 2 +- arrays_strings/rotation/rotation.ipynb | 2 +- arrays_strings/unique_chars/unique_chars.ipynb | 2 +- linked_lists/add_reverse/add_reverse.ipynb | 2 +- linked_lists/delete_mid/delete_mid.ipynb | 2 +- linked_lists/find_loop_start/find_loop_start.ipynb | 2 +- linked_lists/kth_to_last_elem/kth_to_last_elem.ipynb | 2 +- linked_lists/linked_list/linked_list.ipynb | 2 +- linked_lists/palindrome/palindrome.ipynb | 2 +- linked_lists/partition/partition.ipynb | 2 +- linked_lists/remove_duplicates/remove_duplicates.ipynb | 2 +- recursion_dynamic/fibonacci.ipynb | 2 +- sorting_searching/insertion_sort/insertion_sort.ipynb | 2 +- sorting_searching/merge_sort/merge_sort.ipynb | 2 +- sorting_searching/quick_sort/quick_sort.ipynb | 2 +- sorting_searching/selection_sort/selection_sort.ipynb | 2 +- stacks_queues/hanoi/hanoi.ipynb | 2 +- stacks_queues/n_stacks/n_stacks.ipynb | 2 +- stacks_queues/queue_from_stacks/queue_from_stacks.ipynb | 2 +- stacks_queues/queue_list/queue_list.ipynb | 2 +- stacks_queues/set_of_stacks/set_of_stacks.ipynb | 2 +- stacks_queues/sort_stack/sort_stack.ipynb | 2 +- stacks_queues/stack/stack.ipynb | 2 +- stacks_queues/stack_min/stack_min.ipynb | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/arrays_strings/compress/compress.ipynb b/arrays_strings/compress/compress.ipynb index 440ce68..c5919c9 100644 --- a/arrays_strings/compress/compress.ipynb +++ b/arrays_strings/compress/compress.ipynb @@ -26,7 +26,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/arrays_strings/hash_map/hash_map.ipynb b/arrays_strings/hash_map/hash_map.ipynb index be097d5..8bf9a16 100644 --- a/arrays_strings/hash_map/hash_map.ipynb +++ b/arrays_strings/hash_map/hash_map.ipynb @@ -25,7 +25,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/arrays_strings/permutation/permutation.ipynb b/arrays_strings/permutation/permutation.ipynb index d3e838e..54d026f 100644 --- a/arrays_strings/permutation/permutation.ipynb +++ b/arrays_strings/permutation/permutation.ipynb @@ -26,7 +26,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/arrays_strings/replace_char/replace_char.ipynb b/arrays_strings/replace_char/replace_char.ipynb index 9add4c2..8a6fe7a 100644 --- a/arrays_strings/replace_char/replace_char.ipynb +++ b/arrays_strings/replace_char/replace_char.ipynb @@ -25,7 +25,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/arrays_strings/reverse_string/reverse_string.ipynb b/arrays_strings/reverse_string/reverse_string.ipynb index 05487a5..f6c2edd 100644 --- a/arrays_strings/reverse_string/reverse_string.ipynb +++ b/arrays_strings/reverse_string/reverse_string.ipynb @@ -27,7 +27,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/arrays_strings/rotation/rotation.ipynb b/arrays_strings/rotation/rotation.ipynb index 1f4582c..c35405e 100644 --- a/arrays_strings/rotation/rotation.ipynb +++ b/arrays_strings/rotation/rotation.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/arrays_strings/unique_chars/unique_chars.ipynb b/arrays_strings/unique_chars/unique_chars.ipynb index 46c9dfb..190aa14 100644 --- a/arrays_strings/unique_chars/unique_chars.ipynb +++ b/arrays_strings/unique_chars/unique_chars.ipynb @@ -28,7 +28,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/linked_lists/add_reverse/add_reverse.ipynb b/linked_lists/add_reverse/add_reverse.ipynb index d98c61a..b76ff02 100644 --- a/linked_lists/add_reverse/add_reverse.ipynb +++ b/linked_lists/add_reverse/add_reverse.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/linked_lists/delete_mid/delete_mid.ipynb b/linked_lists/delete_mid/delete_mid.ipynb index db1192e..3633813 100644 --- a/linked_lists/delete_mid/delete_mid.ipynb +++ b/linked_lists/delete_mid/delete_mid.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/linked_lists/find_loop_start/find_loop_start.ipynb b/linked_lists/find_loop_start/find_loop_start.ipynb index 8f6fc49..ada4305 100644 --- a/linked_lists/find_loop_start/find_loop_start.ipynb +++ b/linked_lists/find_loop_start/find_loop_start.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/linked_lists/kth_to_last_elem/kth_to_last_elem.ipynb b/linked_lists/kth_to_last_elem/kth_to_last_elem.ipynb index 444dab5..b5cbfe5 100644 --- a/linked_lists/kth_to_last_elem/kth_to_last_elem.ipynb +++ b/linked_lists/kth_to_last_elem/kth_to_last_elem.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/linked_lists/linked_list/linked_list.ipynb b/linked_lists/linked_list/linked_list.ipynb index f640629..346310c 100644 --- a/linked_lists/linked_list/linked_list.ipynb +++ b/linked_lists/linked_list/linked_list.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/linked_lists/palindrome/palindrome.ipynb b/linked_lists/palindrome/palindrome.ipynb index 00060c3..592a22a 100644 --- a/linked_lists/palindrome/palindrome.ipynb +++ b/linked_lists/palindrome/palindrome.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/linked_lists/partition/partition.ipynb b/linked_lists/partition/partition.ipynb index 90b9336..cdf67ee 100644 --- a/linked_lists/partition/partition.ipynb +++ b/linked_lists/partition/partition.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/linked_lists/remove_duplicates/remove_duplicates.ipynb b/linked_lists/remove_duplicates/remove_duplicates.ipynb index 76ad22c..c04647f 100644 --- a/linked_lists/remove_duplicates/remove_duplicates.ipynb +++ b/linked_lists/remove_duplicates/remove_duplicates.ipynb @@ -26,7 +26,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/recursion_dynamic/fibonacci.ipynb b/recursion_dynamic/fibonacci.ipynb index a37709c..bb2bef6 100644 --- a/recursion_dynamic/fibonacci.ipynb +++ b/recursion_dynamic/fibonacci.ipynb @@ -26,7 +26,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/sorting_searching/insertion_sort/insertion_sort.ipynb b/sorting_searching/insertion_sort/insertion_sort.ipynb index 4146ed2..69d264f 100644 --- a/sorting_searching/insertion_sort/insertion_sort.ipynb +++ b/sorting_searching/insertion_sort/insertion_sort.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/sorting_searching/merge_sort/merge_sort.ipynb b/sorting_searching/merge_sort/merge_sort.ipynb index 2506a73..ba1521b 100644 --- a/sorting_searching/merge_sort/merge_sort.ipynb +++ b/sorting_searching/merge_sort/merge_sort.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/sorting_searching/quick_sort/quick_sort.ipynb b/sorting_searching/quick_sort/quick_sort.ipynb index 5eecdc6..2458ee3 100644 --- a/sorting_searching/quick_sort/quick_sort.ipynb +++ b/sorting_searching/quick_sort/quick_sort.ipynb @@ -25,7 +25,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/sorting_searching/selection_sort/selection_sort.ipynb b/sorting_searching/selection_sort/selection_sort.ipynb index 5d6d105..c6c0896 100644 --- a/sorting_searching/selection_sort/selection_sort.ipynb +++ b/sorting_searching/selection_sort/selection_sort.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/stacks_queues/hanoi/hanoi.ipynb b/stacks_queues/hanoi/hanoi.ipynb index e5f834f..a9c61c1 100644 --- a/stacks_queues/hanoi/hanoi.ipynb +++ b/stacks_queues/hanoi/hanoi.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/stacks_queues/n_stacks/n_stacks.ipynb b/stacks_queues/n_stacks/n_stacks.ipynb index 1d57832..9a93c7d 100644 --- a/stacks_queues/n_stacks/n_stacks.ipynb +++ b/stacks_queues/n_stacks/n_stacks.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/stacks_queues/queue_from_stacks/queue_from_stacks.ipynb b/stacks_queues/queue_from_stacks/queue_from_stacks.ipynb index cac93a9..9fdd363 100644 --- a/stacks_queues/queue_from_stacks/queue_from_stacks.ipynb +++ b/stacks_queues/queue_from_stacks/queue_from_stacks.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/stacks_queues/queue_list/queue_list.ipynb b/stacks_queues/queue_list/queue_list.ipynb index 5b91978..1899c88 100644 --- a/stacks_queues/queue_list/queue_list.ipynb +++ b/stacks_queues/queue_list/queue_list.ipynb @@ -25,7 +25,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/stacks_queues/set_of_stacks/set_of_stacks.ipynb b/stacks_queues/set_of_stacks/set_of_stacks.ipynb index fedb9ec..729641c 100644 --- a/stacks_queues/set_of_stacks/set_of_stacks.ipynb +++ b/stacks_queues/set_of_stacks/set_of_stacks.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/stacks_queues/sort_stack/sort_stack.ipynb b/stacks_queues/sort_stack/sort_stack.ipynb index 0c83570..adddecd 100644 --- a/stacks_queues/sort_stack/sort_stack.ipynb +++ b/stacks_queues/sort_stack/sort_stack.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/stacks_queues/stack/stack.ipynb b/stacks_queues/stack/stack.ipynb index 44df098..86b28c9 100644 --- a/stacks_queues/stack/stack.ipynb +++ b/stacks_queues/stack/stack.ipynb @@ -25,7 +25,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", diff --git a/stacks_queues/stack_min/stack_min.ipynb b/stacks_queues/stack_min/stack_min.ipynb index 17f7284..8aec537 100644 --- a/stacks_queues/stack_min/stack_min.ipynb +++ b/stacks_queues/stack_min/stack_min.ipynb @@ -24,7 +24,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Constraints and Assumptions\n", + "## Constraints\n", "\n", "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n",