CS50x_2021 - Harvard CS50x — 2021 solutions

You might also like...
My ANSI C solutions for Advent of Code.

ansi-adventure My optimized ANSI C solutions for Advent of Code. I tried favoring speed and performance the most here than most advent of code repos.

Shellcode loader written in rust. Strives to evade modern EDR solutions.

Pestilence What is pestilence? Pestilence is a shellcode loader written in rust. It strives to evade modern EDR solutions. How does it work? It loads

Coding Questions with Solutions

Coding_SkillSet_Topicwise Code the following questions. Please answer the questions in the "AnswerX.cpp" format.. This repositiory is to help begineer

Collection of DSA problems and solutions
Collection of DSA problems and solutions

Hi HACKTOBERFEST 2021 IS HERE ‼️ ‼️ ‼️ 🎭 What is Hacktoberfest ? ♦️ Hacktoberfest is a month-long challenge. It happens every year in the month of Oc

Deitel & Deitel - "C How To Program" - solutions to exercises

Deitel & Deitel - "C How To Program" - solutions to exercises Intro Here you can find my solutions for Deitel & Deitel - "C How To Program". The code

Bank of challenges & solutions from r/dailyprogrammer for people learning to program

DailyProgrammerChallenges This repo contains all of the challenges from r/dailyprogrammer and also scripts used to pull challenges from the subreddit

Sharpmake is an open-source C#-based solution for generating project definition files, such as Visual Studio projects and solutions, GNU makefiles, Xcode projects, etc.

Sharpmake Introduction Sharpmake is a generator for Visual Studio projects and solutions. It is similar to CMake and Premake, but it is designed for s

This repo contains example software for the Kernelcon 2021 Hack Live! badge - the Hacker HotKey.
This repo contains example software for the Kernelcon 2021 Hack Live! badge - the Hacker HotKey.

Hacker HotKey This repo contains example software for the Kernelcon 2021 Hack Live! badge - the Hacker HotKey. Default Hotkey Mapping Hacker Hotkey is

Exploit to SYSTEM for CVE-2021-21551
Exploit to SYSTEM for CVE-2021-21551

CVE-2021-21551 Exploit to SYSTEM for CVE-2021-21551 SpoolPrinter Privesc using SeImpersonatePrivileges was made thanks to

Comments
  • Application raised an exception

    Application raised an exception

    Hey Mayconpm, Firstly thank you so so much for the code. It’s really well written and has helped me a lot. However, I am getting this error message with the exact same code.

    The terminal says, “application raised an exception” in red which doesn’t allow the program to compile.

    Could you please tell me how I could possibly resolve this as I’ve ragged my brain over this since the past 3 days but haven’t come to a definite output…it’ll be really kind of you:)

    Thankyou so much again for the brilliant code!!

    3BA0AB3C-8677-4200-B290-EF5E45DE0E53

    duplicate wontfix 
    opened by Gurshan26 4
  • My substitution program is working EXCEPT it prints ! at the end of the ciphertext output - help

    My substitution program is working EXCEPT it prints ! at the end of the ciphertext output - help

    I've tried everything I can think of - debug, printf, and tinkering endlessly with the code - what's going on?

    Here's the "print ciphertext" part of the program: { printf("ciphertext: "); for (int j=0; j<strlen(argv[1]);j++) { int orig = plain[j]; int new_char; if ((orig > 64)&&(orig < 91)) { int alpha_seq = orig-64; //finds alphabetic sequence # for uppercase character new_char = toupper(key[(alpha_seq-1)]); //assigns new letter from key } else if ((orig > 96)&&(orig<123)) { int alpha_seq = (orig-96); //finds alphabetic sequence # for lowercase character new_char = tolower(key[(alpha_seq-1)]); //assigns newe letter from key } else { new_char = orig; //leaves non-alpha characters the same } cipher=(char)new_char; printf("%c", cipher); //prints cipher character } } printf("\n");

    opened by BKRunner 1
  • How can I get

    How can I get "helpers.h"?

    How do I get this library in my CS50 IDE?

    https://github.com/Mayconpm/CS50x_2021/blob/f4f82c5fa44fe9b1963f8310bd2a2b9a06cc0325/pset4/filter/more/helpers.c#L2

    wontfix 
    opened by esthicodes 1
Owner
Maycon Paqui Marciano
Maycon Paqui Marciano
Competitive Programming Implementations, Resources, Solutions, and Tools

In competitive programming contests, one must write computer programs capable of solving clear-cut problems under the given contraints and limits. Most competitive programmers use C++, Java, or Python.

Dong Liu 14 Sep 23, 2021
Learn open source contribution by adding your coding problems solutions here!

Hacktoberfest-2021 Repository created for Hacktoberfest event where beginners can learn to contribute to open-source source. How to contribute Check t

Developer Student Clubs, Vishwakarma Institute of Technology, Pune 12 Nov 2, 2021
A repository for Dsa solutions and approaches 📚📕

Coffee and Code ?? Coffee and Code is a Question Bank that provides solving patterns and resources along with solutions in diffrent language to help y

null 16 Nov 28, 2021
This repo contains solutions to coding questions available online on coding platforms like - Codeforces, Codechef, URI Online Judge, and Hackerrank.

CPP_Soln This repo contains solutions to coding questions available online on coding platforms like - Codeforces, Codechef, URI Online Judge , LeetCod

Rijul Jain 4 Nov 3, 2022
Accepted solutions to the Atcoder Educational DP Contest

atcoder-educational-dp Accepted solutions to the Atcoder Educational DP Contest A - Frog 1 B - Frog 2 C - Vacation D - Knapsack 1 E - Knapsack 2 F - L

Sachin Srivastava 4 Dec 4, 2022
Practice questions for midterm & final (no solutions)

Comp 15 Tufts Reviews Here are some reviews for the COMP15 midterm and final. These are not the official course study guides, but rather written by me

null 1 Nov 3, 2021
🎃 Submit creative FizzBuzz solutions in any language you want! Open for beginners !

?? Hacktoberfest 2021 FizzBuzz Submit creative FizzBuzz solutions in any language you want! TL;DR: We're searching for creative/extraordinary/weird Fi

Shubh4nk 17 Oct 25, 2022
Undergrad Course CS252 Project Solutions

191CV210_CS252_PROJECT Details/Documentation for individual project constituting of the following problem statements from the 10th edition of Silbersc

Chaitanya Shashwat 1 Nov 21, 2021
Solutions to Hackerrank.com practice problems using JAVA, C, Python and MySQL

Solutions to Hackerrank practice problems This repository contains 185 solutions to Hackerrank practice problems. Updated daily :) If it was helpful p

Ankit Seth 1 Dec 28, 2021
Contains Algorithms and Competitive Programming sites solutions (codeforces, codechef, etc.)

✨ hacktoberfest2021 ?? ?? Contributing to hacktoberfest 2021 Welcome to hacktoberfest 2021 Public Repository. ????‍?? A month-long celebration from Oc

null 13 Oct 22, 2022