Учитывая 2 метода,
A) for(some iterable condition):
while(some condition)
p=some operation
print(p)
B) functionCall():
while(some condition):
some operation
return k
for(some iterable condition):
p=functionCall()
print(p)
какой из этих 2 имеет меньшую временную сложность (большую эффективность) при решении проблемы методом грубой силы, когда значения малы?