darcydriscoll / chat-room

A small chat room made w/ Vue, Tailwind, MySQL, and PHP.
MIT License
0 stars 0 forks source link

Improve cost of algorithm in api/user.php::User::is_nickname_valid. #15

Open darcydriscoll opened 2 years ago

darcydriscoll commented 2 years ago

🐏 Now: Motivation

⚜️ Where's the issue?

public/api/user.php::User::is_nickname_valid

⚜️ What's the issue?

Algorithm appears to be n^2, which sucks. Check comments for more details.

⚜️ Any ideas on how to solve it?

Nope

🦄 Later: Solving it

💠 The problem

💠 The method

💠 Notes