User profile: oleg9419

User info
User name:oleg9419
History
Joined:
Number of posts:67
Latest posts:

Difference between $() and ``
If you could tell me for both that would be great

Difference between $() and ``
Hello, Are these 2 different ? [code]content=`cat file` content=$(cat file)[/code] when I echo th...

Recursive Function Complexity
MiiniPaa thank you . I know it's tough work but will you please tell me if my logic was correct or ...

Recursive Function Complexity
I have a function T(n) = T(n-1) + T(n-2) + T(n-3) + 8 and T(1) = 1 I need to calculate its run-time....

From Recursive To Iterative Function
thanks