100-Days-Python-Code-Challenge
Input: How Many Terms do you want to Display: 12
Output: 0 1 1 2 3 5 8 13 21 34 55 89
Input: Enter a Number: 5
Output: 5! = 120
Input: Enter 1st Number: 5
Enter 2nd Number: 12
Output: HCF: 1
Input: Enter 1st Number: 5
Enter 2nd Number: 12
Output: LCM: 1
Input: Enter a Number: 78
Output: It's not an Fibonacci Number
Input: Enter a Number: 55
Output: Yup! It's a Fibinacci Number
Input: Enter a Number: 189
Output: No, It's not an Armstrong Number
Input: Enter a Number: 153
Output: It's an Armstrong Number
Input: [ 5, 6, 7, 8, 1, 11, 15, 16], N = 4
Output: [1, 11, 15, 16, 5, 6, 7, 8]
Input: [5, 7, 9, 4, 6, 23, 11, 12]
Output: Max: 23, MIN: 4
Input: Enter a Number: 121
Output: Palindrome Number
Input: Enter a Number: 123
Output: Not a Palindrome Number
Input: Upto How Many Terms: 20
Output: 2 3 5 7 11 13 17 19
![](https://camo.githubusercontent.com/6c232c995dae2d04789156c58a6bb9458322b04cb43e0b055f94cb42d5fbc4f8/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4441592d332d3963662e7376673f6c6162656c3d444159267374796c653d666f722d7468652d6261646765266c6f676f3d507974686f6e266c6f676f436f6c6f723d79656c6c6f77)
Input: [5, 6, 7, 9, 1, 10, 25, 31]
Output: No, It's not an Monotonic List
Input: [1, 2, 3, 4, 5, 6, 7, 8]
Output: Yup, It's an Monotonic List
Input: [7, 4, 5, 6, 7, 8, 9, 1]
Output: [1, 9, 8, 7, 6, 5, 4, 7]
Input: [7, 6, 5, 3, 2, 6, 5, 10], N = 6
Output: Present
Input: [7, 6, 5, 3, 2, 6, 5, 10]
Output: Second Largest Element is: 7
Input: [10, 5, 2, 6, 3, 7, 9, 4]
Output: [4, 5, 2, 6, 3, 7, 9, 10]
![](https://camo.githubusercontent.com/fa66999919d4472849358604e8e3cad22a9c976b3e1520d98185f11f031fc2c9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4441592d342d3963662e7376673f6c6162656c3d444159267374796c653d666f722d7468652d6261646765266c6f676f3d507974686f6e266c6f676f436f6c6f723d79656c6c6f77)
Input: [4, 5, 7, 8, 9, 6, 10, 15]
Output: [4, 5, 7, 8, 9, 6, 10, 15]
Input: [4, 5, 7, 8, 9, 6, 10, 15]
Output: [15, 10, 9, 8]
Input: [14, 25, 16, 23, 10, 5, 6, 8, 7, 9, 10, 25, 14], N = 14
Output: 14 Occurs 2 times
Input: [5, 6, [], 7, 8, 9, [], 12, [], 4,[]]
Output: [5, 6, 7, 8, 9, 12, 4]
Input: [1, 2, 3, 4, 5], N = [2, 4]
Output: [1, 3, 5]
![](https://camo.githubusercontent.com/36fbd4f40614768b1bf4581c646a9cdbbfd951ca1a64ff3b8008a943f2b624b1/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4441592d352d3963662e7376673f6c6162656c3d444159267374796c653d666f722d7468652d6261646765266c6f676f3d507974686f6e266c6f676f436f6c6f723d79656c6c6f77)
Input: [10, 45, 20, 62, 47, 85, 12, 63, 24, 78, 10], N = 2
Output: [[45, 20], [62, 47], [85, 12], [63, 24], [78, 10]]
Input: [10, 20, 30, 40, 50, 60]
Output: [10, 30, 60, 100, 150, 210]
Input: [4, 5, 1, 2, 6, 5, 2]
Output: [5, 2]
Input: [1, 2, [3, 4, [5, 6], 7], [[[8, 9], 10]], [11, [12, 13]]]
Output: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]