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

List.List' is deprecated:Fixed #191 for tim_sort.dart #193

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

Conversation

skdotv
Copy link
Contributor

@skdotv skdotv commented Oct 15, 2022

Welcome to Dart community

Describe your change:

List.List' is deprecated: Fixed

  • Fix a bug or typo in an existing algorithm?

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}.

@skdotv skdotv changed the title List.List' is deprecated:Fixed for tim_sort.dart List.List' is deprecated:Fixed #{$191} for tim_sort.dart Oct 15, 2022
@skdotv skdotv changed the title List.List' is deprecated:Fixed #{$191} for tim_sort.dart List.List' is deprecated:Fixed #191 for tim_sort.dart Oct 15, 2022
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.

Left some comments

@@ -15,7 +15,7 @@ void insertionSort(List list, int left, int right) {

void merge(List list, int left, int middle, int right) {
int length1 = middle - left + 1, length2 = right - middle;
List leftList = new List(length1), rightList = new List(length2);
List leftList = []..length = length1, rightList = []..length = length2;
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