Category: design questions
April 22, 2023
Artificial Intelligence, blockchain, ChatGPT (OpenAI), design pattern, design questions, software design, software development, STEEM, SteemIt, System Design
Yesterday, the ChatGPT has been integrated to Steem Blockchain, but the initial design has problems and so other bot commands e.g. !bing, !price, !info and !thumbup. The applications are …
Teaching Kids Programming: Videos on Data Structures and Algorithms Given a Sudoku, we can use the Depth First Search Algorithm, Iterate Deepening Search Algorithm or Breadth First Search Algorithm …
Teaching Kids Programming: Videos on Data Structures and Algorithms Given a Maze, we can use Breadth First Search, Depth First Search, or Iterate Deepening Search Algorithm to Find an …
The HTTP 503 Error indidicates the server is busy. It might be due to the fact that the servers are overloaded (high load average). One of my API is …
You have a queue of integers, you need to retrieve the first unique integer in the queue. Implement the FirstUnique class: FirstUnique(int nums) Initializes the object with the numbers …