Posts by Thiago Gualberto • 41 points
2 posts
-
0
votes1
answer52
viewsQ: Wrap of an application
In the world of React when I speak "the components that wrap the application", what does that mean? What does it mean to wrap the application?
reactasked Thiago Gualberto 41 -
3
votes3
answers1208
viewsQ: Doubt in the extraction of recursive Fibonacci equation
In some materials on the internet, I found this algorithm to extract the recurring equation from recursive factorial: int qdr(int x, int n) { if(n == 0) return 1; else return x * qdr(x, n-1); } When…
asked Thiago Gualberto 41