Before asking the question, I wanted to give some background. Although time complexity can be empirically determined, I am trying to determine it quantitatively by using a variable to count the complexity. From there the size of the experimental data imposed in the algorithm will act as the x axis and the number of iterations / conditionals within the algorithm that increment the complexity count variable should reflect the y axis of the cartesian plane. This is what would generate the best fit curve (the regression analyis) that provides the growth function. With that growth function you can determine dominance to get your Big O.
My question is about where I should add the variable to count the complexity that will satisfy my use case.
In the below examples, complexityCount is counting the complexity.