An open API service indexing awesome lists of open source software.

https://github.com/vyomrastogi/programming


https://github.com/vyomrastogi/programming

learning-exercise

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

### Practice Repository

This repository contains alogrithims and practice classes

```txt
Sample JournalDev.java Output

##################################
Input: Hiroshima , Output: amihsoriH
Input: , Output:
##################################
a:12 swap with b:59
a:59 swapped with b:12
##################################
Does input string : 'random string' has any vowel - true
Does input string : 'tmz' has any vowel - false
##################################
12343 is prime
15 is not prime
19 is prime
41 is prime
7865429 is not prime
##################################
Fibonacci : 0,1,1,2,3,5,8,13,21,34,55
Fibonacci : 0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584,4181,6765
##################################
Fibonacci from Stream: 0,1,1,2,3,5,8,13,21,34,55,89,144
Fibonacci from Stream: 0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584,4181,6765,10946,17711,28657,46368
##################################
input string 'Return' is not a palindrome
input string 'AruRa' is not a palindrome
input string 'arura' is a palindrome
##################################
Factorial of '1' = 1
Factorial of '10' = 362880
Factorial of '15' = 1278945280
##################################

```