Your ideas/fixes/algorithms are more than welcome!
1. Fork this repo
2. Create your feature branch (`git checkout -b my-awesome-feature`)
3. Commit your changes (`git commit -am 'Added some awesome feature'`)
4. Push to the branch (`git push origin my-awesome-feature`)
5. Create new Pull Request
# | Title | Solutions | Time | Space | Difficulty | Tag | Notes |
---|---|---|---|---|---|---|---|
197 | Rising Temperature | Solution | O(n^2) | O(n) | Easy | ||
196 | Delete Duplicate Emails | Solution | O(n^2) | O(n) | Easy | ||
183 | Customers Who Never Order | Solution | O(n^2) | O(n) | Easy | ||
182 | Duplicate Emails | Solution | O(n^2) | O(n) | Easy | ||
181 | Employees Earning More Than Their Managers | Solution | O(n^2) | O(n) | Easy | ||
178 | Rank Scores | Solution | ? | ? | Medium | ||
176 | Second Highest Salary | Solution | O(n) | O(1) | Easy | ||
175 | Combine Two Tables | Solution | O(m+n) | O(m+n) | Easy |
# | Title | Solutions | Time | Space | Difficulty | Tag | Notes |
---|---|---|---|---|---|---|---|
195 | Tenth Line | Solution | O(n) | O(1) | Easy | ||
194 | Transpose File | Solution | O(n^2) | O(n^2) | Medium | ||
193 | Valid Phone Numbers | Solution | O(n) | O(1) | Easy | ||
192 | Word Frequency | Solution | O(n) | O(k) | Medium |