Posts by luturol • 129 points
2 posts
-
-2
votes4
answers583
viewsA: Javascript function
You need to assign the number multiplication value to another variable. function dobroDoProximo (numero1, numero2) { var dobro = numero1 * numero2 ; return dobro +1; } I believe the problem…
javascriptanswered luturol 129 -
3
votes1
answer141
viewsQ: What is the difference between Strategy Pattern and Specification Pattern
I’m implementing a app CLI in C# of old game and wanted to know which is the best Pattern to use to make the "AI" that would be the player vs computer in the case. I’ve been looking at some Patterns…