Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Numbers

**Find Cost of Tile to Cover W x H Floor** - Calculate the total cost of tile it would take to cover a floor plan of width and height, using a cost entered by the user. [[Drhealsgood (Python)]](https://github.com/Drhealsgood/miniprojects/blob/master/number_projects/other/misc.py) [[petehuang (Ruby)]](https://github.com/petehuang/Projects/blob/master/Numbers/cost_of_tile.rb) [[quitrk (JavaScript)]](https://github.com/quitrk/LearningJS/blob/master/Numbers/04.%20Find%20Cost%20of%20Tile%20to%20Cover%20W%20x%20H%20Floor.js) [[jbruno2 (C++)]](https://github.com/jbruno2/Simple-Programs-and-Solutions/blob/master/C%2B%2B/Cost%20to%20tile%20WxH%20of%20floor.cpp) [[rasppie (Python)]](https://github.com/rasppie/pyprojects/blob/master/tile.py) [[desertwebdesigns (Python)]](https://bitbucket.org/desertwebdesigns/learn_python/src/master/Numbers/tile.py)[[vdrey (Python)]](https://github.com/vdrey/Project-Programs/blob/master/Python/Tile%20cost.py)[[Josenberg (Ruby)]](https://github.com/josenberg/tile_cost/blob/master/tile_cost.rb) [[nokafor(C)]](https://github.com/nokafor/personal-development/blob/master/tiles.c) [[francis36012 (C++)]](https://github.com/francis36012/karan-projects/blob/master/src/numbers/tile.cpp) [[dsub15 (Python)]](https://github.com/dsub15/Projects/commit/f2adae5891932dee5ad63aa19814c0096988b32a) [[chibby0ne (C)]](https://github.com/chibby0ne/Projects/blob/master/Solutions/Numbers/find_cost_tile/find_cost_tile.c) [[kingballer29 (Scala)]](https://github.com/kingballer29/Programming/blob/master/floorTileCostCalculator.scala) [[viktorahlstrom (Bash)]](https://github.com/viktorahlstrom/all/blob/master/coding-problems-solved/projects-solutions/wxhfloor.sh)[[viktorahlstrom (Java)]](https://github.com/viktorahlstrom/all-java/blob/master/floor.java)

**Mortgage Calculator** - Calculate the monthly payments of a fixed term mortgage over given Nth terms at a given interest rate. Also figure out how long it will take the user to pay back the loan. For added complexity, add an option for users to select the compounding interval (Monthly, Weekly, Daily, Continually). [[petehuang (Ruby)]](https://github.com/petehuang/Projects/blob/master/Numbers/mortgage_calculator.rb) [[jbruno2 (C++)]](https://github.com/jbruno2/Simple-Programs-and-Solutions/blob/master/C%2B%2B/mortgagecalculator.cpp) [[ScottKolo (Go)]](https://github.com/ScottKolo/GoProjects/blob/master/Numbers/mortgage.go) [[desertwebdesigns (Python)]](https://bitbucket.org/desertwebdesigns/learn_python/src/master/Numbers/mortgage.py) [[francis36012 (Java)]](https://github.com/francis36012/karan-projects/blob/master/src/numbers/Mortgage.java) [[viktorahlstrom (Bash)]](https://github.com/viktorahlstrom/all/blob/master/coding-problems-solved/projects-solutions/mortgage.sh)
**Mortgage Calculator** - Calculate the monthly payments of a fixed term mortgage over given Nth terms at a given interest rate. Also figure out how long it will take the user to pay back the loan. For added complexity, add an option for users to select the compounding interval (Monthly, Weekly, Daily, Continually). [[petehuang (Ruby)]](https://github.com/petehuang/Projects/blob/master/Numbers/mortgage_calculator.rb) [[jbruno2 (C++)]](https://github.com/jbruno2/Simple-Programs-and-Solutions/blob/master/C%2B%2B/mortgagecalculator.cpp) [[ScottKolo (Go)]](https://github.com/ScottKolo/GoProjects/blob/master/Numbers/mortgage.go) [[desertwebdesigns (Python)]](https://bitbucket.org/desertwebdesigns/learn_python/src/master/Numbers/mortgage.py) [[francis36012 (Java)]](https://github.com/francis36012/karan-projects/blob/master/src/numbers/Mortgage.java) [[viktorahlstrom (Bash)]](https://github.com/viktorahlstrom/all/blob/master/coding-problems-solved/projects-solutions/mortgage.sh) [[RahatAhmed171 (Python)]](https://gist.github.com/RahatAhmed171/cf4e69f8bd437be11ec401fe224cc33e)

**Change Return Program** - The user enters a cost and then the amount of money given. The program will figure out the change and the number of quarters, dimes, nickels, pennies needed for the change. [[Drhealsgood (Python)]](https://github.com/Drhealsgood/miniprojects/blob/master/number_projects/money_changing/money_changing.py) [[petehuang (Ruby)]](https://github.com/petehuang/Projects/blob/master/Numbers/change_return.rb)[[MikroMan (Java)]](https://github.com/MikroMan/Contributions/blob/master/Change.java) [[ScottKolo (Go)]](https://github.com/ScottKolo/GoProjects/blob/master/Numbers/change.go) [[desertwebdesigns (Python)]](https://bitbucket.org/desertwebdesigns/learn_python/src/master/Numbers/change.py) [[aysark (Java)]](https://github.com/aysark/Review/blob/master/Projects/src/ChangeReturn.java) [[dsub15 (Python)]](https://github.com/dsub15/Projects/blob/master/Change.py) [[mchwalek (Clojure)]](https://github.com/mchwalek/Projects/blob/clojure-solutions/Numbers/change-return.clj) [[viktorahlstrom (Bash)]](https://github.com/viktorahlstrom/all/blob/master/coding-problems-solved/projects-solutions/change_return.sh)[[ryjo1026 (Java)]](https://github.com/ryjo1026/Java-Practice/blob/master/ChangeReturn.java)[[rlingineni (C++)]](https://gist.github.com/rlingineni/93b57d67e37134735df5)

Expand Down