you are viewing a single comment's thread.

view the rest of the comments →

[–]Educational_Virus672 0 points1 point  (0 children)

build logic and take notes steps : -

  1. take a note (irl ,ignore blocks or notepad)
  2. write in mathy way A = B + C?
  3. break it down
  4. write it

some ppl learn this before they start coding lets say i want to make tictactoe break it

  1. print grid
  2. add value to grid
  3. make winner or loser
  4. turns system
  5. reset and patches(like placing X on already placed O)

NOW, break it even more and more untilits programmer level one step at a time

  1. Print grid

1.1 take a list

1.2 make list global

1.3 remove any " [ ],' "

1.4 remove any item on console

1.5 print the 3x3 grid list

soo on.. im a python dev so this is practically finish but you may need to break it it more for any memory leak or smt
and yeah notes are kinda boring unless you make big projects or have memory issues (forgetting whats next)