https://github.com/arindam2003/python
A collection of data structure implementations in Python with object oriented manner
https://github.com/arindam2003/python
Last synced: about 2 months ago
JSON representation
A collection of data structure implementations in Python with object oriented manner
- Host: GitHub
- URL: https://github.com/arindam2003/python
- Owner: Arindam2003
- Created: 2024-09-16T13:14:28.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-01-03T16:53:28.000Z (5 months ago)
- Last Synced: 2025-02-02T00:41:18.862Z (4 months ago)
- Language: Python
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python
A collection of data structure implementations in Python with object oriented manner
✅For and Range 1
- [1. Char with unicode](./for_n_range_1/char_unicode.py)
- [2. Digit count](./for_n_range_1/digit_count.py)
- [3. Index Check](./for_n_range_1/index_check.py)
- [4. m_multiply_n](./for_n_range_1/m_multiple_n.py)
- [5. Multiply n](./for_n_range_1/multiple_n.py)
- [6. Multiply print](./for_n_range_1/multiple_print.py)
- [7. n_Even](./for_n_range_1/n_even.py)
- [8. Space_count](./for_n_range_1/space_count.py)
- [9. table.py](./for_n_range_1/table.py)
- [10. Unique Integer](./for_n_range_1/unique_integer.py)
- [11. Vowel_only](./for_n_range_1/vowel_only.py)
- [12. Cube of any number](./for_n_range_1/Cube_any.py)
- [13. Prime in Range](./for_n_range_1/prime_in_range.py)✅List
- [1. Sum of element in a list](./list/sum_of_list_elem.py)
- [2. Avg of element in a list](./list/avg_list.py)
- [3. List of Square of number](./list/square_list.py)
- [4. Sort List in Decending](./list/sort_decending.py)
- [5. Create a list by even place number](./list/create_list_even_place.py)
- [6. First N Even Number List](./list/n_even_list.py)
- [7. N_Prime Number](./list/n_prime.py)
- [8. Create two list Positive and Non Positive](./list/Pos_non_pos.py)
- [9. Fibonocii Number List](./list/fibonocii.py)✅String
- [1. Check given string has only alphabet or not](./string/alpha_present.py)
- [2. Check alphabet present or not in string](./string/check_alphabet.py)
- [3. Count vowel on given string](./string/count_vowel.py)
- [4. Reverse String](./string/reverse_str.py)
- [5. Reverse Word Wise](./string/reverse_word.py)
- [6. Extract the number from a given str and store in list](./string/extract_number.py)
- [7. Palindrome or Not](./string/palindrome.py)
- [8. Upper Convert](./string/to_uppercase.py)
- [9. Find Max Length word](./string/max_len_word.py)✅Tuple
- [1. Convert Tuple from List](./tuple/tuple_from_list.py)
- [2. REverse Tuple](./tuple/reverse_tuple.py)