Code Monkey home page Code Monkey logo
  • šŸ‘‹ Hi, Iā€™m @Vkvarmach
  • šŸ‘€ Iā€™m interested in programming
  • šŸŒ± Iā€™m currently learning devoloping web appications...
  • šŸ’žļø Iā€™m looking to collaborate on google
  • šŸ“« How to reach me [email protected]...

Chunchu_Assignment2

VIJAY KUMAR CHUNCHU

DELHI

Delhi is the capital city of India. It is well known tourist place to visit and also we can find a lot of different culutural tradition.Delhi has many historical places to visit.


Direction using orderd list
  1. Maryville
  2. kansas
    1. kansas airport
    2. boarding terminal
    3. aeroplane
  3. delhi

items using unordered list

To create a table with at least 4food/drinksthat I would recommend someone try.Include a short paragraph that introduces the table.

mandatory fav1 fav2 fav3 fav4
food/drink biryani pasta pizza pepsi
location hyderabad delhi vizag mumbai
money 50-40 40-30 30-20 20-10

Quotes section

"Varmas kings by blood". Author: shivaji
"Think about your thinking". Author: balakrishna


Code fencing

Dynamic programming is both a mathematical optimization method and a computer programming method. The method was developed by Richard Bellman in the 1950s and has found applications in numerous fields, from aerospace engineering to economics. quick source code https://en.wikipedia.org/wiki/Dynamic_programming

int m, n; vector dp_before(n), dp_cur(n);

long long C(int i, int j);

// compute dp_cur[l], ... dp_cur[r] (inclusive) void compute(int l, int r, int optl, int optr) { if (l > r) return;

int mid = (l + r) >> 1;
pair<long long, int> best = {LLONG_MAX, -1};

for (int k = optl; k <= min(mid, optr); k++) {
    best = min(best, {(k ? dp_before[k - 1] : 0) + C(k, mid), k});
}

dp_cur[mid] = best.first;
int opt = best.second;

compute(l, mid - 1, optl, opt);
compute(mid + 1, r, opt, optr);

}

int solve() { for (int i = 0; i < n; i++) dp_before[i] = C(0, i);

for (int i = 1; i < m; i++) {
    compute(0, n - 1, 0, n - 1);
    dp_before = dp_cur;
}

return dp_before[n - 1];

}

quick source code https://cp-algorithms.com/dynamic_programming/divide-and-conquer-dp.html

VIJAY KUMAR CHUNCHU's Projects

guessmynumber icon guessmynumber

A Java Guess the number game from https://hackr.io/blog/java-projects

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.