Skip to main content

Questions tagged [check50error]

0 votes
2 answers
554 views

Description I have been working on this solution for a couple of weeks now. I wrote the code to satisfy all requirements described in the problem set in about three hours. The rest of the time has ...
Seamus Connolly's user avatar
0 votes
2 answers
119 views

I am trying to check my code using check50 but it gives me the error But when I am compiling it and running it from the terminal it runs just fine. My code for helper.c is #include "helpers....
Rex Kartik's user avatar
0 votes
1 answer
97 views

#include <cs50.h> #include <stdio.h> int main(void) { // TODO: Prompt for start size float startSize; do { startSize = get_int("Start Size: "); } ...
Ben's user avatar
  • 1
0 votes
2 answers
2k views

I am working through CS50P, just finishing off Problem Set 6. The last problem in the set is entitled: CS50 P-Shirt. I can see that my shirt.py program creates images exactly as required, and it ...
Abaci's user avatar
  • 29
0 votes
0 answers
44 views

I know there is a question similar to this one, but the code is quite different and the if statement is being used differently. I was going through my code for Pset 3 Plurality, and it behaves ...
Lambo-1's user avatar
0 votes
4 answers
407 views

At my wit's end here. I've seen this question asked before, but I haven't really found an answer. My speller program compiles perfectly fine in the VS Code workspace. It generates the same results as ...
Steedy Speve's user avatar
0 votes
1 answer
28 views

[![can someone help me with this error in check50 cause I don't understand what's wrong!!][1]][1] this is a problem in check50, I was trying to check pset2 readability & I don't know what's wrong ...
Mahmoud Saad's user avatar
0 votes
1 answer
73 views

The below code lost a mark; check50 gave the explanation just below. A different time-out query (by Abhijit) appears to have had a different cause. The check50 line used: check50 cs50/problems/2021/x/...
sub2600's user avatar
0 votes
1 answer
564 views

I get below errors from check50: :( buy handles invalid ticker symbol application raised an exception (see the log for more details) :( buy handles fractional, negative, and non-numeric shares ...
user avatar
0 votes
1 answer
845 views

For Lab6 the code I have written seems to have problems running. Even with check50 it tells me that "check50 is taking longer than usual". I am unable to figure out what is wrong with my ...
soong's user avatar
  • 5
0 votes
1 answer
220 views

this is my code for Edge, and it's not passing check50. below are the errors I got. any help is appreciated. :( edges correctly filters middle pixel expected "210 150 60\n", not "28 202 ...
YMeng's user avatar
  • 23
0 votes
1 answer
150 views

I have written the following code for blur . // Blur image void blur(int height, int width, RGBTRIPLE image[height][width]) { for ( int h=0 ; h<height ; h++) { for ( int w=0 ; ...
MWD's user avatar
  • 86
0 votes
1 answer
206 views

The code runs for all 20 sequences on the terminal but during submit50/check50, it runs into an error with the following log: the code is attached for reference. import csv import sys if __name__ == ...
CSsucks's user avatar
  • 76