├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── actuaryemma ├── README.md ├── c │ ├── README.md │ ├── add.c │ ├── cal │ ├── cal.c │ ├── cal.h │ ├── division.c │ ├── mul.c │ ├── sub.c │ └── validate.c └── python │ └── cal.py ├── akellomick ├── README.md ├── add.c ├── div.c ├── end_msg.c ├── main.c ├── main.h ├── msg.c ├── mul.c └── sub.c ├── amprebonne ├── README.md ├── exit.c ├── init.c ├── main.c ├── main.h └── math.c ├── anniedevkiller ├── README.md └── calc.c ├── atcocoder ├── README.md ├── bye.txt ├── calc.c ├── calc.h ├── display.c ├── display.h ├── input_functions.c ├── input_functions.h ├── math_functions.c ├── math_functions.h ├── simple_calculator ├── simple_calculator.txt └── welcome_message.txt ├── black_genius ├── README.md ├── main.c └── main.h ├── certifieddonnie ├── .gitignore ├── README.md ├── calculator.c ├── calculator.h ├── compiler ├── error_handler.c ├── error_handler.h └── main.c ├── chimachinemerem ├── README.md ├── calc.h ├── calculator.png ├── error.c ├── main.c └── utilities.c ├── chris ├── Calculator.c ├── README.md └── compiler.sh ├── chykb ├── README.md └── cal.c ├── codebymaganga ├── README.md ├── calculator.c └── duplicate_repo │ ├── calculator.c │ └── calculator.dSYM │ └── Contents │ ├── Info.plist │ └── Resources │ └── DWARF │ └── calculator ├── codescience ├── README.md ├── calcul.c ├── calcul.h └── main.c ├── collins331 ├── Calculator.c └── README.md ├── collins_apollo ├── README.md ├── calculator.c ├── errorhandler.c ├── errorhandler.h ├── main.c └── main.h ├── declaudefrancois ├── .gitignore ├── README.md ├── calculator.c ├── calculator.h ├── main.c ├── num_stack.c ├── num_stack.h ├── op_stack.c └── op_stack.h ├── destinedcodes ├── README.md ├── calc.c └── calc.h ├── dohoudaniel ├── C │ ├── README.md │ ├── compile_to_calculator.sh │ ├── exit_message.c │ ├── main.c │ ├── main.h │ ├── math_functions.c │ ├── math_functions.h │ ├── perform_calc.c │ ├── print_message.c │ ├── print_result.c │ ├── store_username.c │ └── validate_operator.c ├── JavaScript │ ├── README.md │ ├── calculator.js │ └── run_calc.sh ├── Python │ ├── README.md │ ├── function_classes.py │ ├── main.py │ ├── perform_calc.py │ ├── print_message.py │ ├── run_calc.sh │ └── validate_input.py └── README.md ├── dprofcode ├── README.md ├── calc.h ├── functions.c ├── handle_calc.c └── main.c ├── edwin-valentino7504 ├── README.md ├── advanced_calc_functions.c ├── calc.h ├── calc_functions.c ├── main.c ├── print_functions.c └── utility_functions.c ├── ekerejosh ├── README.md ├── calculator.c ├── calculator.h └── main.c ├── el898 ├── README.md ├── calculator.c ├── main.c └── main.h ├── elvis ├── README.md └── calc.c ├── emycodes ├── README.md ├── emycodes.c └── emycodes.h ├── evanceodoyo ├── README.md ├── adv_calc.c ├── basic_calc.c ├── calc.h ├── calc_func.c └── main.c ├── flexywork327 ├── README.md └── main.c ├── hullaah ├── Hullaah.md ├── calculator.c ├── calculator.h ├── dependencies.c └── operations.c ├── isaac_ajibola ├── README.md └── python │ ├── README.md │ └── calculator.py ├── jailan_sh ├── README.md ├── calc.h └── main.c ├── kabelomasela ├── README.md ├── calc.c └── main.h ├── khairat ├── README.md ├── cal.c ├── cal.h └── cal1.c ├── manuelshub ├── README.md ├── calc.h ├── main.c └── operations.c ├── martyofmca ├── README.md ├── calc.c └── main.h ├── maryanemwende ├── README.md └── calc.c ├── maximo ├── README.md └── cal.c ├── mburu_elvis ├── README.md ├── calc.c ├── calc.h ├── calculations.c ├── calculations2.c └── function_selector.c ├── mrnazu ├── README.md └── app.js ├── mubarak ├── C │ ├── README.md │ ├── calculator.c │ ├── main.h │ └── operation.c ├── Python │ ├── README.md │ ├── calculator.py │ └── operation.py └── README.md ├── najmasahal ├── README.md └── python │ └── calculator.py ├── namujibril ├── Calculator.c └── README.md ├── nanaaba08 ├── README.md └── c │ ├── README.md │ ├── calc.c │ ├── main.c │ └── main.h ├── ochijehfranklin ├── README.md └── calculator.c ├── odary ├── .gitignore ├── Makefile ├── README.md ├── run.sh └── src │ ├── Calculator.h │ └── Main.c ├── oluwafemi ├── README.md ├── calc.h └── main.c ├── rahab ├── 0-calculator.c ├── README.md ├── main.c └── main.h ├── ruovagems ├── README.md └── c │ ├── README.md │ └── operand.c ├── samuelejalonibu ├── .gitignore ├── README.md ├── main.c └── main.h ├── samuelogboye ├── README.md ├── calc.h └── calculator.c ├── shazaAly ├── README.md ├── calc.c ├── calc.h ├── main.c └── shaza ├── teamkweku ├── README.md ├── calc.h ├── main.c └── operations.c ├── techdanny ├── README.md └── calc.c ├── ukasquared ├── README.md ├── calc.h ├── calc_func.c └── main.c ├── valariecaite ├── c │ ├── README.md │ └── basic_calculator.c └── example_README.md ├── veronicagyasi ├── README.md └── calculator.c ├── walkthrough └── main.c ├── wasscodeur ├── README.me ├── calc.h ├── isdiff.c └── main.c └── youngman-d-coder ├── README.md ├── basic_cal.c ├── calc.c ├── main.h └── special_cal.c /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/README.md -------------------------------------------------------------------------------- /actuaryemma/README.md: -------------------------------------------------------------------------------- 1 | Calculator Demo Project using C and Python 2 | -------------------------------------------------------------------------------- /actuaryemma/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/actuaryemma/c/README.md -------------------------------------------------------------------------------- /actuaryemma/c/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/actuaryemma/c/add.c -------------------------------------------------------------------------------- /actuaryemma/c/cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/actuaryemma/c/cal -------------------------------------------------------------------------------- /actuaryemma/c/cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/actuaryemma/c/cal.c -------------------------------------------------------------------------------- /actuaryemma/c/cal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/actuaryemma/c/cal.h -------------------------------------------------------------------------------- /actuaryemma/c/division.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/actuaryemma/c/division.c -------------------------------------------------------------------------------- /actuaryemma/c/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/actuaryemma/c/mul.c -------------------------------------------------------------------------------- /actuaryemma/c/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/actuaryemma/c/sub.c -------------------------------------------------------------------------------- /actuaryemma/c/validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/actuaryemma/c/validate.c -------------------------------------------------------------------------------- /actuaryemma/python/cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/actuaryemma/python/cal.py -------------------------------------------------------------------------------- /akellomick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/akellomick/README.md -------------------------------------------------------------------------------- /akellomick/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/akellomick/add.c -------------------------------------------------------------------------------- /akellomick/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/akellomick/div.c -------------------------------------------------------------------------------- /akellomick/end_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/akellomick/end_msg.c -------------------------------------------------------------------------------- /akellomick/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/akellomick/main.c -------------------------------------------------------------------------------- /akellomick/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/akellomick/main.h -------------------------------------------------------------------------------- /akellomick/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/akellomick/msg.c -------------------------------------------------------------------------------- /akellomick/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/akellomick/mul.c -------------------------------------------------------------------------------- /akellomick/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/akellomick/sub.c -------------------------------------------------------------------------------- /amprebonne/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/amprebonne/README.md -------------------------------------------------------------------------------- /amprebonne/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/amprebonne/exit.c -------------------------------------------------------------------------------- /amprebonne/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/amprebonne/init.c -------------------------------------------------------------------------------- /amprebonne/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/amprebonne/main.c -------------------------------------------------------------------------------- /amprebonne/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/amprebonne/main.h -------------------------------------------------------------------------------- /amprebonne/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/amprebonne/math.c -------------------------------------------------------------------------------- /anniedevkiller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/anniedevkiller/README.md -------------------------------------------------------------------------------- /anniedevkiller/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/anniedevkiller/calc.c -------------------------------------------------------------------------------- /atcocoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/README.md -------------------------------------------------------------------------------- /atcocoder/bye.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/bye.txt -------------------------------------------------------------------------------- /atcocoder/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/calc.c -------------------------------------------------------------------------------- /atcocoder/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/calc.h -------------------------------------------------------------------------------- /atcocoder/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/display.c -------------------------------------------------------------------------------- /atcocoder/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/display.h -------------------------------------------------------------------------------- /atcocoder/input_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/input_functions.c -------------------------------------------------------------------------------- /atcocoder/input_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/input_functions.h -------------------------------------------------------------------------------- /atcocoder/math_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/math_functions.c -------------------------------------------------------------------------------- /atcocoder/math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/math_functions.h -------------------------------------------------------------------------------- /atcocoder/simple_calculator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/simple_calculator -------------------------------------------------------------------------------- /atcocoder/simple_calculator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/simple_calculator.txt -------------------------------------------------------------------------------- /atcocoder/welcome_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/atcocoder/welcome_message.txt -------------------------------------------------------------------------------- /black_genius/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/black_genius/README.md -------------------------------------------------------------------------------- /black_genius/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/black_genius/main.c -------------------------------------------------------------------------------- /black_genius/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/black_genius/main.h -------------------------------------------------------------------------------- /certifieddonnie/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/certifieddonnie/.gitignore -------------------------------------------------------------------------------- /certifieddonnie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/certifieddonnie/README.md -------------------------------------------------------------------------------- /certifieddonnie/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/certifieddonnie/calculator.c -------------------------------------------------------------------------------- /certifieddonnie/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/certifieddonnie/calculator.h -------------------------------------------------------------------------------- /certifieddonnie/compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/certifieddonnie/compiler -------------------------------------------------------------------------------- /certifieddonnie/error_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/certifieddonnie/error_handler.c -------------------------------------------------------------------------------- /certifieddonnie/error_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/certifieddonnie/error_handler.h -------------------------------------------------------------------------------- /certifieddonnie/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/certifieddonnie/main.c -------------------------------------------------------------------------------- /chimachinemerem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/chimachinemerem/README.md -------------------------------------------------------------------------------- /chimachinemerem/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/chimachinemerem/calc.h -------------------------------------------------------------------------------- /chimachinemerem/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/chimachinemerem/calculator.png -------------------------------------------------------------------------------- /chimachinemerem/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/chimachinemerem/error.c -------------------------------------------------------------------------------- /chimachinemerem/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/chimachinemerem/main.c -------------------------------------------------------------------------------- /chimachinemerem/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/chimachinemerem/utilities.c -------------------------------------------------------------------------------- /chris/Calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/chris/Calculator.c -------------------------------------------------------------------------------- /chris/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/chris/README.md -------------------------------------------------------------------------------- /chris/compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/chris/compiler.sh -------------------------------------------------------------------------------- /chykb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/chykb/README.md -------------------------------------------------------------------------------- /chykb/cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/chykb/cal.c -------------------------------------------------------------------------------- /codebymaganga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/codebymaganga/README.md -------------------------------------------------------------------------------- /codebymaganga/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/codebymaganga/calculator.c -------------------------------------------------------------------------------- /codebymaganga/duplicate_repo/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/codebymaganga/duplicate_repo/calculator.c -------------------------------------------------------------------------------- /codebymaganga/duplicate_repo/calculator.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/codebymaganga/duplicate_repo/calculator.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /codebymaganga/duplicate_repo/calculator.dSYM/Contents/Resources/DWARF/calculator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/codebymaganga/duplicate_repo/calculator.dSYM/Contents/Resources/DWARF/calculator -------------------------------------------------------------------------------- /codescience/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/codescience/README.md -------------------------------------------------------------------------------- /codescience/calcul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/codescience/calcul.c -------------------------------------------------------------------------------- /codescience/calcul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/codescience/calcul.h -------------------------------------------------------------------------------- /codescience/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/codescience/main.c -------------------------------------------------------------------------------- /collins331/Calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/collins331/Calculator.c -------------------------------------------------------------------------------- /collins331/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/collins331/README.md -------------------------------------------------------------------------------- /collins_apollo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/collins_apollo/README.md -------------------------------------------------------------------------------- /collins_apollo/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/collins_apollo/calculator.c -------------------------------------------------------------------------------- /collins_apollo/errorhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/collins_apollo/errorhandler.c -------------------------------------------------------------------------------- /collins_apollo/errorhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/collins_apollo/errorhandler.h -------------------------------------------------------------------------------- /collins_apollo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/collins_apollo/main.c -------------------------------------------------------------------------------- /collins_apollo/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/collins_apollo/main.h -------------------------------------------------------------------------------- /declaudefrancois/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/declaudefrancois/.gitignore -------------------------------------------------------------------------------- /declaudefrancois/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/declaudefrancois/README.md -------------------------------------------------------------------------------- /declaudefrancois/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/declaudefrancois/calculator.c -------------------------------------------------------------------------------- /declaudefrancois/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/declaudefrancois/calculator.h -------------------------------------------------------------------------------- /declaudefrancois/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/declaudefrancois/main.c -------------------------------------------------------------------------------- /declaudefrancois/num_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/declaudefrancois/num_stack.c -------------------------------------------------------------------------------- /declaudefrancois/num_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/declaudefrancois/num_stack.h -------------------------------------------------------------------------------- /declaudefrancois/op_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/declaudefrancois/op_stack.c -------------------------------------------------------------------------------- /declaudefrancois/op_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/declaudefrancois/op_stack.h -------------------------------------------------------------------------------- /destinedcodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/destinedcodes/README.md -------------------------------------------------------------------------------- /destinedcodes/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/destinedcodes/calc.c -------------------------------------------------------------------------------- /destinedcodes/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/destinedcodes/calc.h -------------------------------------------------------------------------------- /dohoudaniel/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/README.md -------------------------------------------------------------------------------- /dohoudaniel/C/compile_to_calculator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/compile_to_calculator.sh -------------------------------------------------------------------------------- /dohoudaniel/C/exit_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/exit_message.c -------------------------------------------------------------------------------- /dohoudaniel/C/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/main.c -------------------------------------------------------------------------------- /dohoudaniel/C/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/main.h -------------------------------------------------------------------------------- /dohoudaniel/C/math_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/math_functions.c -------------------------------------------------------------------------------- /dohoudaniel/C/math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/math_functions.h -------------------------------------------------------------------------------- /dohoudaniel/C/perform_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/perform_calc.c -------------------------------------------------------------------------------- /dohoudaniel/C/print_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/print_message.c -------------------------------------------------------------------------------- /dohoudaniel/C/print_result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/print_result.c -------------------------------------------------------------------------------- /dohoudaniel/C/store_username.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/store_username.c -------------------------------------------------------------------------------- /dohoudaniel/C/validate_operator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/C/validate_operator.c -------------------------------------------------------------------------------- /dohoudaniel/JavaScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/JavaScript/README.md -------------------------------------------------------------------------------- /dohoudaniel/JavaScript/calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/JavaScript/calculator.js -------------------------------------------------------------------------------- /dohoudaniel/JavaScript/run_calc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/JavaScript/run_calc.sh -------------------------------------------------------------------------------- /dohoudaniel/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/Python/README.md -------------------------------------------------------------------------------- /dohoudaniel/Python/function_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/Python/function_classes.py -------------------------------------------------------------------------------- /dohoudaniel/Python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/Python/main.py -------------------------------------------------------------------------------- /dohoudaniel/Python/perform_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/Python/perform_calc.py -------------------------------------------------------------------------------- /dohoudaniel/Python/print_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/Python/print_message.py -------------------------------------------------------------------------------- /dohoudaniel/Python/run_calc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/Python/run_calc.sh -------------------------------------------------------------------------------- /dohoudaniel/Python/validate_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/Python/validate_input.py -------------------------------------------------------------------------------- /dohoudaniel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dohoudaniel/README.md -------------------------------------------------------------------------------- /dprofcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dprofcode/README.md -------------------------------------------------------------------------------- /dprofcode/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dprofcode/calc.h -------------------------------------------------------------------------------- /dprofcode/functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dprofcode/functions.c -------------------------------------------------------------------------------- /dprofcode/handle_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dprofcode/handle_calc.c -------------------------------------------------------------------------------- /dprofcode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/dprofcode/main.c -------------------------------------------------------------------------------- /edwin-valentino7504/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/edwin-valentino7504/README.md -------------------------------------------------------------------------------- /edwin-valentino7504/advanced_calc_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/edwin-valentino7504/advanced_calc_functions.c -------------------------------------------------------------------------------- /edwin-valentino7504/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/edwin-valentino7504/calc.h -------------------------------------------------------------------------------- /edwin-valentino7504/calc_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/edwin-valentino7504/calc_functions.c -------------------------------------------------------------------------------- /edwin-valentino7504/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/edwin-valentino7504/main.c -------------------------------------------------------------------------------- /edwin-valentino7504/print_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/edwin-valentino7504/print_functions.c -------------------------------------------------------------------------------- /edwin-valentino7504/utility_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/edwin-valentino7504/utility_functions.c -------------------------------------------------------------------------------- /ekerejosh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ekerejosh/README.md -------------------------------------------------------------------------------- /ekerejosh/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ekerejosh/calculator.c -------------------------------------------------------------------------------- /ekerejosh/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ekerejosh/calculator.h -------------------------------------------------------------------------------- /ekerejosh/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ekerejosh/main.c -------------------------------------------------------------------------------- /el898/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/el898/README.md -------------------------------------------------------------------------------- /el898/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/el898/calculator.c -------------------------------------------------------------------------------- /el898/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/el898/main.c -------------------------------------------------------------------------------- /el898/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/el898/main.h -------------------------------------------------------------------------------- /elvis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/elvis/README.md -------------------------------------------------------------------------------- /elvis/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/elvis/calc.c -------------------------------------------------------------------------------- /emycodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/emycodes/README.md -------------------------------------------------------------------------------- /emycodes/emycodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/emycodes/emycodes.c -------------------------------------------------------------------------------- /emycodes/emycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/emycodes/emycodes.h -------------------------------------------------------------------------------- /evanceodoyo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/evanceodoyo/README.md -------------------------------------------------------------------------------- /evanceodoyo/adv_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/evanceodoyo/adv_calc.c -------------------------------------------------------------------------------- /evanceodoyo/basic_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/evanceodoyo/basic_calc.c -------------------------------------------------------------------------------- /evanceodoyo/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/evanceodoyo/calc.h -------------------------------------------------------------------------------- /evanceodoyo/calc_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/evanceodoyo/calc_func.c -------------------------------------------------------------------------------- /evanceodoyo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/evanceodoyo/main.c -------------------------------------------------------------------------------- /flexywork327/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/flexywork327/README.md -------------------------------------------------------------------------------- /flexywork327/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/flexywork327/main.c -------------------------------------------------------------------------------- /hullaah/Hullaah.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/hullaah/Hullaah.md -------------------------------------------------------------------------------- /hullaah/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/hullaah/calculator.c -------------------------------------------------------------------------------- /hullaah/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/hullaah/calculator.h -------------------------------------------------------------------------------- /hullaah/dependencies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/hullaah/dependencies.c -------------------------------------------------------------------------------- /hullaah/operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/hullaah/operations.c -------------------------------------------------------------------------------- /isaac_ajibola/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/isaac_ajibola/README.md -------------------------------------------------------------------------------- /isaac_ajibola/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/isaac_ajibola/python/README.md -------------------------------------------------------------------------------- /isaac_ajibola/python/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/isaac_ajibola/python/calculator.py -------------------------------------------------------------------------------- /jailan_sh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/jailan_sh/README.md -------------------------------------------------------------------------------- /jailan_sh/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/jailan_sh/calc.h -------------------------------------------------------------------------------- /jailan_sh/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/jailan_sh/main.c -------------------------------------------------------------------------------- /kabelomasela/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/kabelomasela/README.md -------------------------------------------------------------------------------- /kabelomasela/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/kabelomasela/calc.c -------------------------------------------------------------------------------- /kabelomasela/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/kabelomasela/main.h -------------------------------------------------------------------------------- /khairat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/khairat/README.md -------------------------------------------------------------------------------- /khairat/cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/khairat/cal.c -------------------------------------------------------------------------------- /khairat/cal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/khairat/cal.h -------------------------------------------------------------------------------- /khairat/cal1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/khairat/cal1.c -------------------------------------------------------------------------------- /manuelshub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/manuelshub/README.md -------------------------------------------------------------------------------- /manuelshub/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/manuelshub/calc.h -------------------------------------------------------------------------------- /manuelshub/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/manuelshub/main.c -------------------------------------------------------------------------------- /manuelshub/operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/manuelshub/operations.c -------------------------------------------------------------------------------- /martyofmca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/martyofmca/README.md -------------------------------------------------------------------------------- /martyofmca/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/martyofmca/calc.c -------------------------------------------------------------------------------- /martyofmca/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/martyofmca/main.h -------------------------------------------------------------------------------- /maryanemwende/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/maryanemwende/README.md -------------------------------------------------------------------------------- /maryanemwende/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/maryanemwende/calc.c -------------------------------------------------------------------------------- /maximo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/maximo/README.md -------------------------------------------------------------------------------- /maximo/cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/maximo/cal.c -------------------------------------------------------------------------------- /mburu_elvis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mburu_elvis/README.md -------------------------------------------------------------------------------- /mburu_elvis/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mburu_elvis/calc.c -------------------------------------------------------------------------------- /mburu_elvis/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mburu_elvis/calc.h -------------------------------------------------------------------------------- /mburu_elvis/calculations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mburu_elvis/calculations.c -------------------------------------------------------------------------------- /mburu_elvis/calculations2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mburu_elvis/calculations2.c -------------------------------------------------------------------------------- /mburu_elvis/function_selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mburu_elvis/function_selector.c -------------------------------------------------------------------------------- /mrnazu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mrnazu/README.md -------------------------------------------------------------------------------- /mrnazu/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mrnazu/app.js -------------------------------------------------------------------------------- /mubarak/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mubarak/C/README.md -------------------------------------------------------------------------------- /mubarak/C/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mubarak/C/calculator.c -------------------------------------------------------------------------------- /mubarak/C/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mubarak/C/main.h -------------------------------------------------------------------------------- /mubarak/C/operation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mubarak/C/operation.c -------------------------------------------------------------------------------- /mubarak/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mubarak/Python/README.md -------------------------------------------------------------------------------- /mubarak/Python/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mubarak/Python/calculator.py -------------------------------------------------------------------------------- /mubarak/Python/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mubarak/Python/operation.py -------------------------------------------------------------------------------- /mubarak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/mubarak/README.md -------------------------------------------------------------------------------- /najmasahal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/najmasahal/README.md -------------------------------------------------------------------------------- /najmasahal/python/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/najmasahal/python/calculator.py -------------------------------------------------------------------------------- /namujibril/Calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/namujibril/Calculator.c -------------------------------------------------------------------------------- /namujibril/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/namujibril/README.md -------------------------------------------------------------------------------- /nanaaba08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/nanaaba08/README.md -------------------------------------------------------------------------------- /nanaaba08/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/nanaaba08/c/README.md -------------------------------------------------------------------------------- /nanaaba08/c/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/nanaaba08/c/calc.c -------------------------------------------------------------------------------- /nanaaba08/c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/nanaaba08/c/main.c -------------------------------------------------------------------------------- /nanaaba08/c/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/nanaaba08/c/main.h -------------------------------------------------------------------------------- /ochijehfranklin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ochijehfranklin/README.md -------------------------------------------------------------------------------- /ochijehfranklin/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ochijehfranklin/calculator.c -------------------------------------------------------------------------------- /odary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/odary/.gitignore -------------------------------------------------------------------------------- /odary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/odary/Makefile -------------------------------------------------------------------------------- /odary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/odary/README.md -------------------------------------------------------------------------------- /odary/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/odary/run.sh -------------------------------------------------------------------------------- /odary/src/Calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/odary/src/Calculator.h -------------------------------------------------------------------------------- /odary/src/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/odary/src/Main.c -------------------------------------------------------------------------------- /oluwafemi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/oluwafemi/README.md -------------------------------------------------------------------------------- /oluwafemi/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/oluwafemi/calc.h -------------------------------------------------------------------------------- /oluwafemi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/oluwafemi/main.c -------------------------------------------------------------------------------- /rahab/0-calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/rahab/0-calculator.c -------------------------------------------------------------------------------- /rahab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/rahab/README.md -------------------------------------------------------------------------------- /rahab/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/rahab/main.c -------------------------------------------------------------------------------- /rahab/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/rahab/main.h -------------------------------------------------------------------------------- /ruovagems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ruovagems/README.md -------------------------------------------------------------------------------- /ruovagems/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ruovagems/c/README.md -------------------------------------------------------------------------------- /ruovagems/c/operand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ruovagems/c/operand.c -------------------------------------------------------------------------------- /samuelejalonibu/.gitignore: -------------------------------------------------------------------------------- 1 | .exe 2 | .vscode -------------------------------------------------------------------------------- /samuelejalonibu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/samuelejalonibu/README.md -------------------------------------------------------------------------------- /samuelejalonibu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/samuelejalonibu/main.c -------------------------------------------------------------------------------- /samuelejalonibu/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/samuelejalonibu/main.h -------------------------------------------------------------------------------- /samuelogboye/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/samuelogboye/README.md -------------------------------------------------------------------------------- /samuelogboye/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/samuelogboye/calc.h -------------------------------------------------------------------------------- /samuelogboye/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/samuelogboye/calculator.c -------------------------------------------------------------------------------- /shazaAly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/shazaAly/README.md -------------------------------------------------------------------------------- /shazaAly/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/shazaAly/calc.c -------------------------------------------------------------------------------- /shazaAly/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/shazaAly/calc.h -------------------------------------------------------------------------------- /shazaAly/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/shazaAly/main.c -------------------------------------------------------------------------------- /shazaAly/shaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/shazaAly/shaza -------------------------------------------------------------------------------- /teamkweku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/teamkweku/README.md -------------------------------------------------------------------------------- /teamkweku/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/teamkweku/calc.h -------------------------------------------------------------------------------- /teamkweku/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/teamkweku/main.c -------------------------------------------------------------------------------- /teamkweku/operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/teamkweku/operations.c -------------------------------------------------------------------------------- /techdanny/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/techdanny/README.md -------------------------------------------------------------------------------- /techdanny/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/techdanny/calc.c -------------------------------------------------------------------------------- /ukasquared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ukasquared/README.md -------------------------------------------------------------------------------- /ukasquared/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ukasquared/calc.h -------------------------------------------------------------------------------- /ukasquared/calc_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ukasquared/calc_func.c -------------------------------------------------------------------------------- /ukasquared/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/ukasquared/main.c -------------------------------------------------------------------------------- /valariecaite/c/README.md: -------------------------------------------------------------------------------- 1 | Basic Calculator Program 2 | -------------------------------------------------------------------------------- /valariecaite/c/basic_calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/valariecaite/c/basic_calculator.c -------------------------------------------------------------------------------- /valariecaite/example_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/valariecaite/example_README.md -------------------------------------------------------------------------------- /veronicagyasi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/veronicagyasi/README.md -------------------------------------------------------------------------------- /veronicagyasi/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/veronicagyasi/calculator.c -------------------------------------------------------------------------------- /walkthrough/main.c: -------------------------------------------------------------------------------- 1 | int main(void) 2 | return 0 3 | -------------------------------------------------------------------------------- /wasscodeur/README.me: -------------------------------------------------------------------------------- 1 | # My contribution 2 | -------------------------------------------------------------------------------- /wasscodeur/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/wasscodeur/calc.h -------------------------------------------------------------------------------- /wasscodeur/isdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/wasscodeur/isdiff.c -------------------------------------------------------------------------------- /wasscodeur/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/wasscodeur/main.c -------------------------------------------------------------------------------- /youngman-d-coder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/youngman-d-coder/README.md -------------------------------------------------------------------------------- /youngman-d-coder/basic_cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/youngman-d-coder/basic_cal.c -------------------------------------------------------------------------------- /youngman-d-coder/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/youngman-d-coder/calc.c -------------------------------------------------------------------------------- /youngman-d-coder/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/youngman-d-coder/main.h -------------------------------------------------------------------------------- /youngman-d-coder/special_cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Algorithmia-SE/Demo-Project/HEAD/youngman-d-coder/special_cal.c --------------------------------------------------------------------------------