Skip to content

Instantly share code, notes, and snippets.

View kashyapmanu's full-sized avatar

Manukashyap.U.V kashyapmanu

View GitHub Profile
@kashyapmanu
kashyapmanu / cash-register.js
Created December 29, 2021 10:03 — forked from JaymesKat/cash-register.js
Design a cash register drawer function checkCashRegister() that accepts purchase price as the first argument (price), payment as the second argument (cash), and cash-in-drawer (cid) as the third argument. cid is a 2D array listing available currency. The checkCashRegister() function should always return an object with a status key and a change k…
const CLOSED = "CLOSED";
const INSUFFICIENT_FUNDS = "INSUFFICIENT_FUNDS";
const OPEN = "OPEN";
const PENNY = 0;
const NICKEL = 1;
const DIME = 2;
const QUARTER = 3;
const ONE = 4;
const FIVE = 5;
@kashyapmanu
kashyapmanu / Eight Semester Syllabus.md
Last active July 21, 2021 04:51
Eight Semester Syllabus

Eight semester

  • SEE Written Exams

  • Syllabus List

    • Engineering Management
      • Unit 1
        • Management
          • Meaning
          • Functions of management
        • Planning
  • Nature and importance of planning
@kashyapmanu
kashyapmanu / drive_to_kaggle.py
Created March 14, 2021 06:30
Python code to download the files from google drive to kaggle
# Install gdown
#! conda install -y gdown
#Run the above code if gdown is not installed.
"""
Get shareable link : -
https://drive.google.com/file/d/1-9XVOJSkXy0L894wAh5dC16MzL5Zt0Wk/view?usp=sharing
Add the file id's (1-9XVOJSkXy0L894wAh5dC16MzL5Zt0Wk) of the file to url list.
Name for your file