Blogspot - jajaborovidhan.blogspot.com - jajabor ovidhan
General Information:
Latest News:
Step Ahead in JAVA 12 Feb 2013 | 08:08 pm
Hello everyone, this is my solution for "Life, the Universe, and Everyting" in SPOJ. It was my first submission in JAVA. Take here a look.
Step Ahead in JAVA 12 Feb 2013 | 08:08 pm
Hello everyone, this is my solution for "Life, the Universe, and Everyting" in SPOJ. It was my first submission in JAVA. Take here a look.
Longest Palindromic Subsequence or Maximum Length of Palindrome 20 Oct 2012 | 09:47 pm
Definition: A sequence is called "Palindrome" if it is read same left to right and right to left. The sequence remains same as before after reversing it. The sequence "MADAM" is a Palind...
Longest Palindromic Subsequence or Maximum Length of Palindrome 20 Oct 2012 | 09:47 pm
Definition: A sequence is called "Palindrome" if it is read same left to right and right to left. The sequence remains same as before after reversing it. The sequence "MADAM" is a Palindrome. More abo...
Addition, Subtraction & Multiplication in .ASM 15 Oct 2012 | 12:07 am
Addition, Subtraction & Multiplication of two numbers submitted, until the program terminates by user. The termination process is actually maintained by 0 and 1, 0 terminates the program and 1 continu...
Addition, Subtraction & Multiplication in .ASM 15 Oct 2012 | 12:07 am
Addition, Subtraction & Multiplication of two numbers submitted, until the program terminates by user. The termination process is actually maintained by 0 and 1, 0 terminates the program and 1 continu...
Maximum Interval Sum 22 Sep 2012 | 11:33 pm
Given a array of natural numbers, we have to find the maximum interval sum. 5 5 -1 5 5 Now we have these intervals (5 + 5), ( 5 + 5 + (-1)), (5 + 5 + (-1) + 5), (5 + 5 + (-1) + 5 + 5). Whi....
Maximum Interval Sum 22 Sep 2012 | 11:33 pm
Given a array of natural numbers, we have to find the maximum interval sum. 5 5 -1 5 5 Now we have these intervals (5 + 5), ( 5 + 5 + (-1)), (5 + 5 + (-1) + 5), (5 + 5 + (-1) + 5 + 5). Whic...
Message Print in Assembly Language 19 Sep 2012 | 12:47 am
; =========================== ; OUTPUT: ; Take Input: 'input' ; First Value: 5 ; Second Value: 'input' ;============================
Message Print in Assembly Language 19 Sep 2012 | 12:47 am
; ; Sample code for input a number, ; output a number and some message. ; emu8086 TITLE PRINTING HABIJABI .MODEL SMALL .STACK 100H .DATA MSG DB 'Take Input: $' MSG1 DB 'First Value: $' MSG2...