Skip to content

Instantly share code, notes, and snippets.

View mistryvatsal's full-sized avatar
🏠
Working from home

Vatsal Mistry mistryvatsal

🏠
Working from home
View GitHub Profile
@mistryvatsal
mistryvatsal / higherOrderFunctions.js
Last active August 27, 2019 15:11
A starter, get going, small snippet-based, various implementation of Higher Order Methods of Array in JavaScript that are handy in writing codes for bigger application in JavaScript or related frameworks.
// Demonstrated usage of Higher Order Methods of Array in Javascript
// with and without using arrow functions.
// Content Inspired by TraversyMedia(http://www.traversymedia.com).
// The snippets are commented out for all the variety of methods.
// Uncomment the snippets to test them out in your browser(link this js into a simple HTML) or on your command-line using Node JS.
// console.log(" VARIABLE NAME ") use this to print out the result.
const companies= [
@mistryvatsal
mistryvatsal / forgone_solution.py
Last active April 14, 2019 21:00
A Solution for FOREGONE SOLUTION problem from Qualifier Round of Google's CodeJam 2019.
# __author__ = "Vatsal Mistry"
# A solution for FOREGONE SOLUTION Problem from Qualifier Round of Google's CodeJam 2019.
# Problem Description Link : https://codingcompetitions.withgoogle.com/codejam/round/0000000000051705/0000000000088231
# Importing regular expression module.
import re
# tc holds the number of testcases.
@mistryvatsal
mistryvatsal / README-Template.md
Created December 21, 2017 08:53 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites