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
Solution is working GUI but not in Excercism.
data: lwa_aggregated_data type aggregated_data_type, lv_count type i, lv_number type i, lv_maxmin type i. Sort initial_numbers by group number. loop at initial_numbers into data(lwa_initial). lv_maxmin = lwa_initial-number. at new group. clear: lv_count, lv_number. lwa_aggregated_data-group = lwa_initial-group. lwa_aggregated_data-min = lv_maxmin. endat. lv_count = lv_count + 1. lv_number = lv_number + lwa_initial-number. at end of group. lwa_aggregated_data-count = lv_count. lwa_aggregated_data-sum = lv_number. lwa_aggregated_data-max = lv_maxmin. lwa_aggregated_data-average = lv_number / lv_count. Append lwa_aggregated_data to aggregated_data. endat. endloop
The text was updated successfully, but these errors were encountered:
thanks, yea, there are problems with AT, see #134
Sorry, something went wrong.
@malikvikram16 try again, AT should be fixed now
malikvikram16
No branches or pull requests
Solution is working GUI but not in Excercism.
The text was updated successfully, but these errors were encountered: