42us-stupidity icon indicating copy to clipboard operation
42us-stupidity copied to clipboard

a tool set for spawning a set of checker files to check against the output of a student's exercises

Results 8 42us-stupidity issues
Sort by recently updated
recently updated
newest added

Here's the code I turned in that passed stupidity: ```#include int ft_strlen(char *str) { int length; length = 0; while (str[length]) { length++; } return (length); } char *ft_strdup(char *src)...

Try this: ./a.out "LQ8w4" "HRLyY" "9ImzYBCH" "3uLt0" "E19IYJDhGNgU" "SabJD" "75Igy0" "1UHBbqRL4rgO" "60tL821BbqAZ" "4CoiSU" "sIS3hDqo8G50" "Q7xq" "tmagT7F9" "HhUNZvVGQz" Should give you: 1UHBbqRL4rgO 3uLt0 4CoiSU 60tL821BbqAZ 75Igy0 9ImzYBCH E19IYJDhGNgU HRLyY --LQ8w4 HhUNZvVGQz...

New rules say “Overflows don't have to be handled”

Does this happen for anyone else? My version of day04 ex03 passes moulinette, but does not pass stupidity. I get the following error message: !!!! ERROR in work/ex03/main: expected 8...

Another test case: printf("%s, aaa\n", ft_strstr("aa1aaa", "aaa")); should still loop through the rest of str in case the rest of to_find does not match.

Add: `"$program asdf qwer asdf zxcv" => "qwer,zxcv,\n",`

when I try to use the spawn.pl command as directed in the readme, i get the following error "config file required at ./spawn.pl line 261" this is when trying to...