Month: August 2015

07
Aug
2015

Sorting Algorithm : Insertion Sort

From this two video I tried to re learn and implement the algorithm with pseudo code. Pseudocode:…

06
Aug
2015

URI Online Judge Solution | 1041 Coordinates of a Point

Here is the logic,  If x!=0 and y==0 then it will be in the y asix and…

06
Aug
2015

Bash For Loops

Syntax: for var in <list> do <commands> done example: named=’Zaki Live .Com’ for nametame in $named do…

01
Aug
2015

Bash Programming : Say user hello !

Take a name from user and say hello user! 😀 echo `expr “What is your name?”` read…

01
Aug
2015

Bash Programming : Check typed name is a valid $USER or not

I tried it hardly….Here you have to maintain the syntax if[expression] then echo `expr “”Hello Name` fi…

01
Aug
2015

Bash Programming : Multiplication

Here I tried this on ubuntu To create the file cat>mul code type in the terminal: read…