Skip to content

Commit

Permalink
fix(url-shorten-app): typo (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogay committed Oct 3, 2023
1 parent ab5430d commit 8e6edde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion courses/level101/python_web/url-shorten-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Also, choice of hash algorithm matters. We will need to analyze algorithms. Thei
Given a URL to shorten, how do we verify if the URL is valid? Do we even verify or validate? One basic check that can be done is see if the URL matches a regex of a URL. To go even further we can try opening/visiting the URL. But there are certain gotchas here.

1. We need to define success criteria. ie: HTTP 200 means it is valid.
2. What is the URL is in private network?
2. What if the URL is in private network?
3. What if URL is temporarily down?

### 4. Storage
Expand Down

0 comments on commit 8e6edde

Please sign in to comment.