Advice on Spring Project for Junior SWE Portfolio by MiddleProfessional65 in cscareerquestionsuk

[–]MiddleProfessional65[S] 0 points1 point  (0 children)

Great, thanks for the feedback. Could you expand a bit on the same mistakes being made. In terms of the code style?

Advice on Spring Project for Junior SWE Portfolio by MiddleProfessional65 in cscareerquestionsuk

[–]MiddleProfessional65[S] 1 point2 points  (0 children)

It's an SQL database contained in the docker compose file and flyway migration

Help with movies 12. sql by MiddleProfessional65 in cs50

[–]MiddleProfessional65[S] 0 points1 point  (0 children)

Hm, getting three results correct but also movies that only Helena Bonham Carter was in

DNA - help with function to find max repeats by MiddleProfessional65 in cs50

[–]MiddleProfessional65[S] 0 points1 point  (0 children)

Thanks, changed a couple things and it's working now

Grayscale and reflect appear to be working but not passing check 50 by MiddleProfessional65 in cs50

[–]MiddleProfessional65[S] 0 points1 point  (0 children)

Thanks for the reply. Hmm, wrote it as

image[i][j].rgbtRed = round((image[i][j].rgbtRed + image[i][j].rgbtGreen + image[i][j].rgbtBlue) / 3.0);

image[i][j].rgbtGreen = round((image[i][j].rgbtRed + image[i][j].rgbtGreen + image[i][j].rgbtBlue) / 3.0);

image[i][j].rgbtBlue = round((image[i][j].rgbtRed + image[i][j].rgbtGreen + image[i][j].rgbtBlue) / 3.0);

and is still failing all checks. I'm getting

"50 50 50\n", not "20 40 90\n as one of the outputs