this step can’t be skipped. You have to learn the very basics of Python syntax before you dive deeper into your chosen area. You want to spend the minimum amount of time on this, as it isn’t very motivating.
the rundown on this project is that its a game, that a user with a unique name can play the game has stats like difficulty and time, i tried to keep it as simple as possible, and focus on project requirment and the game itself, the game is a maze i Used a maze generation algorithm to generate a random maze everytime. the rails side contains basic relationship between user and game user has many games and a game belongs to a user.
Model The Model component corresponds to all the data-related logic that the user works with. This can represent either the data that is being transferred between the View and Controller components or any other business logic-related data. For example, a Customer object will retrieve the customer information from the database, manipulate it and update it data back to the database or use it to render data.
we have seen in the last blog the o(n) notation and that is implemented when we have some sort of looping going around.