https://github.com/vyomrastogi/programming
https://github.com/vyomrastogi/programming
learning-exercise
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vyomrastogi/programming
- Owner: vyomrastogi
- Created: 2021-03-07T22:53:59.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-04T01:46:58.000Z (almost 5 years ago)
- Last Synced: 2025-04-12T14:51:24.504Z (9 months ago)
- Topics: learning-exercise
- Language: Java
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
##################################
```