Posts by Henrique Felipe • 132 points
5 posts
-
2
votes2
answers4491
viewsA: Whatsapp link does not work on iOS
Weird, I use the same sharing link on a website and it works normally on iPhone. I even asked, just now, for a friend to test on her iPhone to ask questions and everything is normal. Because of the…
-
3
votes1
answer642
viewsA: List of Figures formed by name+number
Try using this command in the preamble (original code): \usepackage{tocloft} % para figuras \renewcommand{\cftfigpresnum}{Figura. } % coloca antes do número \renewcommand{\cftfigaftersnum}{: } %…
latexanswered Henrique Felipe 132 -
2
votes1
answer217
viewsA: Form in Html
The protocol mailto is a special type of URL that opens the default application of user device emails. The message was "disfigured" because the parameters were not passed to the URL. There are…
htmlanswered Henrique Felipe 132 -
3
votes1
answer576
viewsA: Algorithm complexity - Big O notation
Prove that g(n) is O(f(n)) is the same as saying that there are constants c and n0 (both positive) such that 0 ≤ g(n) ≤ cf(n), para todo n ≥ n0 I mean, we have to prove that 0 ≤ 200n2 + 5 ≤ c(n3 +…
answered Henrique Felipe 132 -
1
votes2
answers1013
viewsA: Generate random numbers in java, store in a vector and sort them
This message indicates that there are syntax errors that prevent your code from being compiled. For example, the code block below the comment //BubbleSort is out of a method. Also, you have not…