Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Extended_Euclidean_Algorithm in TypeScript #2971

Closed

Conversation

shivanidalmia1203
Copy link
Contributor

@shivanidalmia1203 shivanidalmia1203 commented May 24, 2020

Fixes #2906

Checklist:

  • 4 space indentation.
  • Coding conventions are followed.
  • Input is taken dynamically.
  • Sample Input / Output is added at the end of file.
  • Logic Documentation (Comments).
  • File names are correct.

Make sure these boxes are checked before your pull request (PR) is ready to be reviewed and merged. Thanks!

Changes proposed in this pull request:

  • Add code for Extended_Euclidean_Algorithm in TypeScript

Languages Used:

  • TypeScript

Files Added:

  • Extended_Euclidean_Algorithm.ts

We're happy to help you get this ready -- don't be afraid to ask for help.

Thanks!

return y;
}

let x : number = 12;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@atarax665 Actually in typescript we just cannot take it that way some changes need to be done in html file to do that because it basically deals with the browser window so in order to take different inputs we can directly change the values

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shivanidalmia1203 Okay, got you

@@ -0,0 +1,32 @@
export {}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add a comment mentioning the algorithm name.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shivanidalmia1203 Do this and then squash your commits

return y;
}

let x : number = 12;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@atarax665 Actually in typescript we just cannot take it that way some changes need to be done in html file to do that because it basically deals with the browser window so in order to take different inputs we can directly change the values

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Extended Euclidean Algorithm
2 participants