Posts by Gustavo Lofrese • 35 points
4 posts
-
1
votes1
answer32
viewsQ: You can only call one or two classes from an entire library in HTML/Css
I’m making a website and I’m already finishing, but to make my site responsive I would need two classes from the Materialize library. The intention was to take only these two classes because by…
-
1
votes1
answer47
viewsQ: Why is getElementsByClassName not working?
I have to make a program that when clicking on the link "HIGH CONTRAST" the whole background turns black and the color of the letter turns white My question is what am I doing wrong? If I exchange…
-
1
votes3
answers244
viewsQ: Exception: Non-exhaustive Patterns in Function - Haskell
I’m trying to make a code in Haskell that eliminates all repeated values from a list, the code is like this: import Data.List filtraLista [] = [] filtraLista (xs : []) = [xs] sort filtraLista…
haskellasked Gustavo Lofrese 35 -
0
votes1
answer150
viewsQ: How to make the Java Scanner read more than once in a program using classes?
I have to make a code using Object Oriented Programming, where you have a password already predefined and using Scanner you enter at least three attempts (one at a time). The program is reading only…