One Paragraph of project description goes here
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.
| package com.vineeth.problemsolving; | |
| import java.util.HashSet; | |
| import java.util.Set; | |
| public class BirthdayCandles { | |
| // Solution using hash set | |
| public int minNumberOfBlowsSolution1(int[] candlesHeight) { | |
| if(candlesHeight != null && candlesHeight.length > 0) { | |
| Set<Integer> uniqueHeightSet = new HashSet<>(); |
| tensorflow | |
| scikit | |
| prediction-io | |
| h202 | |
| keras | |
| numpy | |
| pandas | |
| theano |
| mocha 44731 | |
| chai 17944 | |
| grunt 17447 | |
| should 11882 | |
| grunt-contrib-jshint 11466 | |
| gulp 8619 | |
| istanbul 7374 | |
| tape 7313 | |
| sinon 6851 | |
| grunt-contrib-clean 6807 |
| <!-- Respect Rollcall --> | |
| <li><a href="http://www.alistapart.com/articles/">A List Apart — for website builders</a></li> | |
| <li><a href="http://abstrusegoose.com/">Abstruse Goose — my favorite comic</a></li> | |
| <li><a href="http://al3x.net/">Alex Payne — technology rambling</a></li> | |
| <li><a href="http://dashes.com/anil/">Anil Dash — on culture, apple & design</a></li> | |
| <li><a href="http://weblogs.mozillazine.org/asa/">Asa Dotzler — on mozilla & software</a></li> | |
| <li><a href="http://www.azarask.in/blog/">Aza Raskin – on design & firefox</a></li> | |
| <li><a href="http://christophzillgens.com/en/">Christoph Zillgens — interface design</a></li> | |
| <li><a href="http://cssremix.com/">CSS Remix — gorgeous designs</a></li> | |
| <li><a href="http://css-tricks.com/">CSS Tricks</a></li> |
| __author__ = 'Vineeth' | |
| ''' | |
| This tutorial code block lets you know about a design pattern for command line interface tools | |
| To illustrate i will take an example. The command line tool consists of a main command and sub commands | |
| Each command and sub command contains of switches or arguments | |
| I will take the main command name as "main_command" | |
| And sub commands as "sub_command_1", "sub_command_2", "sub_command_3" so on |