Skip to content

Commit

Permalink
Required Changes from Last PR done
Browse files Browse the repository at this point in the history
  • Loading branch information
Lycons-rage committed Jun 15, 2024
1 parent 806dcd5 commit 031c9b4
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Pre-Processing/Algorithms/requirements.txt

This file was deleted.

34 changes: 34 additions & 0 deletions Pre-Processing/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<h2>Hey <𝚌𝚘𝚍𝚎𝚛𝚜/>! 👋</h2>

## Available Algorithms

- A diverse collection of algorithms, each with clear explanations, test cases and practical examples.

| S.No | Algorithm | S.No. | Algorithm | S.No. | Algorithm |
|-------|-----------------|-------|----------------|-------|------------------|
| 1 | Standard Scaler | 2 | Min Max Scaler | 3 | Ordinal Encoder |
| 4 | | 5 | | 6 | |

## Available Documentations

- Detailed guides and tutorials on various topics. These resources are designed to assist both beginners and advanced learners in understanding complex concepts and implementing AI solutions.

| S.No | Documentation | S.No | Documentation | S.No | Documentation |
|-------|-----------------|-------|-----------------|------|-----------------|
| 1 | Standard Scaler | 2 | Min Max Scaler | 3 | Ordinal Encoder |
| 4 | | 5 | | 6 | |

## Available Projects

- A variety of projects to demonstrate real-world applications of AI algorithms. These projects include datasets, code, and step-by-step explanations to help users apply their knowledge and develop practical skills.

| S.No | Project | S.No | Project | S.No | Project |
|-------|---------|-------|---------|------|---------|
| 1 | | 2 | | 3 | |
| 4 | | 5 | | 6 | |


<div align="center">
<h3>Show some &nbsp;❤️&nbsp; by &nbsp;🌟&nbsp; this repository!</h3>
</div>
<a href="#top"><img src="https://img.shields.io/badge/-Back%20to%20Top-red?style=for-the-badge" align="right"/></a>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Python Program to Form an Integer that has the Number of Digits at Ten’s Place and the Least Significant Digit of the Entered Integer at One’s Place

n = int(input("\nEnter A Number: "))

if(n>0):
l = int(len(str(n)))
s = n%10

else:
l = int(len(str(-1*n)))
s = (-1*n)%10

print(f"\nRequired Number is: {(l*10)+s}\n")

0 comments on commit 031c9b4

Please sign in to comment.