Posts by Paulo Henrique Mendonça • 13 points
3 posts
-
0
votes0
answers31
viewsQ: I’m not able to solve npm dependencies
to receive this output when trying to use the npm i Movie-trailer command, vscode does not recognize the library. npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected]…
-
0
votes1
answer47
viewsQ: Python input problem
My program is working correctly for a test case but when more than one error occurs shown in the image. The following code: alfabeto = dict() entradas = input() i = 0 for i in entradas: texto =…
-
1
votes0
answers28
viewsQ: Is this function using the concept of callback?
var array = [1, 2, 3, 4, 5, 6]; var arrayDobrado = array.map(function(num) { return num * 2; });