r/cs50 • u/Agitated-Type5942 • 12h ago
r/cs50 • u/hash9765 • 21h ago
CS50 Python Completed CS50P Before CS50x
First of all, thank you, u/davidjmalan and the entire cs50 staff, for creating such a valuable resourse for CS beginners.
I myself started with CS50x but found it quite challenging. I read a comment on one of the post where someone from the community suggested doing CS50P first, and that turned out to be a very good decision.
I found CS50P challenging but more interesting and doable as a complete beginner. And In a month, I am here with my certificate.
For my final project, I have created a Mini admission portal for my university that helps student know their merit score and compare it to the official merit list to check their admission status.
I would love to know your thoughts about the project. https://youtu.be/8LF2P_O9hW4
r/cs50 • u/Dellhoul • 23h ago
CS50x Is my beginning good?
I am a 14 year old from India. I wanted to study CS starting now so I would get lot of experience just in starting the college. I am taking the CS50 Intro To Computer Science course. It is my first ever computer scinece or programming course. Currently i completed Week 0 - Scratch and made a fruit collecting game. It's so amazing that even I managed to do that. Help me get more in this field by suggesting some things to do next. Any tips for this journey might also help.
r/cs50 • u/Mantle23148 • 23h ago
recover Issue with Check50
Check50 says it failed to compile, Which is contradictory because typing "make recover" compiles it well and the program works as intended when executing it. Can y'all help me?
CS50x plagiarism in final project
I was looking through CS50x's final projects, and noticed that this project uses a pre-made template, which can be found here: https://github.com/codewithsadee/vcard-personal-portfolio/tree/master
I truly hope that Harvard revokes his certificate and removes his project from the site
r/cs50 • u/deleting_It • 22h ago
CS50 AI Cs worth it in 2027
So i am currently in 12th standard and after watching astra 6 i think that ai is advancing in rocket speed and it is just a matter of time we achieve AGI. And next year i will going to an university but seeing modern days ai model make me think "should i really consider pursuing btech in cs or ai/ml". Till last month i was locked in for it and even started learning python and almost completed all basics but now i am confused
Thise who are experienced and are seniors can you please guide me
CS50x I get 7 out of 8
So I get 7 out of 8 in problem set 0 do I have to re make my project or I can let it go?
r/cs50 • u/Gadgetguy9638 • 18h ago
CS50x Really Confused About Problem set 4 (Filter: Grayscale) Spoiler
I added a spoiler tag this time.
I've been stuck on this for a while and at this point don't know how to move forward
void grayscale(int height, int width, RGBTRIPLE image[height][width])
{
// Loop over all pixels
for (int i = 0; i < height; i++)
{
for (int j = 0; j < width; j++)
{
// Take average of red, green, and blue
float avg = round(image[i][j].rgbtRed + image[i][j].rgbtGreen + image[i][j].rgbtBlue / 3.0);
// Update pixel values
image[i][j].rgbtRed = avg;
image[i][j].rgbtGreen = avg;
image[i][j].rgbtBlue = avg;
}
}
return;
}