We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
c9b3766 버전 코드에서 여러 번에 걸쳐 sorte() 함수를 호출하여 subGdict의 키를 정렬하고 있습니다. 그러나 만약 subGdict의 크기가 크다면, 반복적인 정렬이 비효율적입니다.
따라 subGdict를 생성한 직후에 한 번만 정렬하고, 이후의 작업에서는 정렬된 결과를 재사용하는 것이 좋아보입니다. 정렬된 데이터를 재사용함으로써 sorted() 호출을 최소화해서 성능을 향상시킬 수 있습니다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
c9b3766 버전 코드에서 여러 번에 걸쳐 sorte() 함수를 호출하여 subGdict의 키를 정렬하고 있습니다.
그러나 만약 subGdict의 크기가 크다면, 반복적인 정렬이 비효율적입니다.
따라 subGdict를 생성한 직후에 한 번만 정렬하고, 이후의 작업에서는 정렬된 결과를 재사용하는 것이 좋아보입니다. 정렬된 데이터를 재사용함으로써 sorted() 호출을 최소화해서 성능을 향상시킬 수 있습니다.
The text was updated successfully, but these errors were encountered: