-
Notifications
You must be signed in to change notification settings - Fork 401
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
Added prime_checker.py for checking prime numbers #1879
base: master
Are you sure you want to change the base?
Conversation
gem 'tzinfo-data' | ||
gem 'did_you_mean' | ||
gem 'hound' | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2 trailing blank lines detected.
@@ -57,3 +57,8 @@ group :test do | |||
gem "shoulda-matchers" | |||
gem "webmock" | |||
end | |||
gem 'tzinfo-data' | |||
gem 'did_you_mean' | |||
gem 'hound' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
@@ -57,3 +57,8 @@ group :test do | |||
gem "shoulda-matchers" | |||
gem "webmock" | |||
end | |||
gem 'tzinfo-data' | |||
gem 'did_you_mean' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem did_you_mean should appear before tzinfo-data.
Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
@@ -57,3 +57,8 @@ group :test do | |||
gem "shoulda-matchers" | |||
gem "webmock" | |||
end | |||
gem 'tzinfo-data' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
Trailing whitespace detected.
This pull request adds a new Python script named prime_checker.py to the repository. The prime_checker.py script contains functions to check whether a given number is a prime number or not. This addition enhances the functionality of the project by providing a utility for prime number checking, which can be used in various contexts within the project.