Giter Club home page Giter Club logo

assignment2-coats's Introduction

assignment2-coats

Logan Coats

LC's Hamburger's

Its kinda the best place to get burgers in Kansas City. It's in Platte Woods, south of Barry Road and North of NW 72nd street, right next to I-29.


Directions from KCI Airport

  1. Exit the airport onto I-29 south.
  2. Exit I-29 South at the NW 72nd Street exit.
  3. Turn right onto NW 72nd Street, then turn right again onto NW Prairie View Road.
  4. Turn right on NW Spur Dr. and enter the LC's Hamburgers parking lot on the right.

    Things I'd recommend:

  • Hamburger
  • Big Deal (Cheeseburger w/grilled onions, a regular fry and drink
  • Double Bacon Cheeseburger
  • Chocolate Shake

Sports and Activities I'd recommend:

These are things I like to do/play and I thought I would share them here.

Name of activity Location Cost
Tennis Courts by rec. center 30$
Disc Golf Disc golf course on campus 25-30$
Ping Pong Rec. Center, The Station <10$
Gaming Anywhere with internet 100$+

Quotes

What is better? To be born good or to overcome your evil nature through great effort? - Paarthunax, ESV: Skyrim

Lack of something to feel important about is almost the greatest tragedy a man may have. - Arthur Morgan, Red Dead Redemption II


Depth First Search Algorithm

Depth-first search (DFS) is an algorithm for traversing or searching tree or graph data structures. - Wikipedia

vector<vector<int>> adj; // graph represented as an adjacency list
int n; // number of vertices

vector<bool> visited;

void dfs(int v) {
    visited[v] = true;
    for (int u : adj[v]) {
        if (!visited[u])
            dfs(u);
    }
}

Code Source

About me

assignment2-coats's People

Contributors

logan-coats 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.