Code Monkey home page Code Monkey logo

first_projects's Introduction

First Projects Repo

List of Projects

Imbed1

This project show how to imbed webpages in other pages

Mystify

This project implemets the Mystify screen saver in the browser with javascript

Node_js_tutor

This is the notes from a Node Js Course

Oreilly_book

These are notes from a Javascript Oreilly Book

dyn_prog

These files are all about recursion

Best Sum Program

This program takes in an array of numbers and then from that tries to identify the best combination of the least amount of numbers that add up to the desired sum.

Trying to think of a practical application of this program. Lets say you had so many people and you wanted them to be in groups of 3...

Anyway, Lets look at what this program does.

Parts of the Program

With any recursion program the first thing is to identify the limits for the recusion. And this is the first thing that is done in the program.

if (targetSum in memo) return memo[targetSum];
if (targetSum === 0) return [];
if (targetSum < 0) return null;

Grid.js

lesson_1

More files...

first_projects's People

Contributors

bluejet80 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.