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

Fixes: 200 #201

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Fixes: 200 #201

wants to merge 1 commit into from

Conversation

skdotv
Copy link
Contributor

@skdotv skdotv commented Oct 15, 2022

Welcome to Dart community

Describe your change:

  • Add an algorithm?
  • Fix a bug or typo in an existing algorithm?
  • Documentation change?

Checklist:

  • I have read CONTRIBUTING.md.
  • This pull request is all my own work -- I have not plagiarized.
  • I know that pull requests will not be merged if they fail the automated tests.
  • This PR only changes one algorithm file. To ease review, please open separate PRs for separate algorithms.
  • All new Dart files are placed inside an existing directory.
  • All new algorithms have a URL in its comments that points to Wikipedia or other similar explanation.
  • If this pull request resolves one or more open issues then the commit message contains Fixes: #{$ISSUE_NO}.

Copy link
Member

@akashgk akashgk left a comment

Choose a reason for hiding this comment

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

I think assigning length value is not a good practice. Can we change the constructor to List.filled()

@@ -70,7 +70,8 @@ class HashMap {
List<LinkedList> buckets;

HashMap(int hsize) {
buckets = new List<LinkedList>(hsize);
Copy link
Member

Choose a reason for hiding this comment

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

I think assigning length value is not a good practice. Can we change the constructor to List.filled()

@@ -6,7 +6,7 @@ const int MAX_SIZE = 10;

class CircularQueue<T> {
int start = -1, end = -1;
List<T> queue = new List<T>(MAX_SIZE);
List<T> queue = []..length = MAX_SIZE;
Copy link
Member

Choose a reason for hiding this comment

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

I think assigning length value is not a good practice. Can we change the constructor to List.filled()

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.

2 participants