You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hints could be provided to help users incrementally arrive at the desired solution. Users could %load these hints into the Challenge Notebook when needed.
Hints
Run the following cell(s) for a hint:
%load hint1.txt
%load hint2.txt
Running the cell(s) would would load the contents of the accompanying hint file:
# %load hint1.txt
Consider a brute force solution that scans each
element and compares it with every other element.
# %load hint2.txt
The brute force solution has a time complexity of O(n^2).
A hash map lookup could help make this linear.
The text was updated successfully, but these errors were encountered:
donnemartin
changed the title
Add solution hints for each challenge notebook
Add incremental hints for each challenge notebook
Jul 14, 2015
Hints could be provided to help users incrementally arrive at the desired solution. Users could %load these hints into the Challenge Notebook when needed.
Hints
Run the following cell(s) for a hint:
Running the cell(s) would would load the contents of the accompanying hint file:
The text was updated successfully, but these errors were encountered: