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

AT: ITAB combination solution is not working in Exercism #201

Open
malikvikram16 opened this issue Sep 24, 2022 · 2 comments
Open

AT: ITAB combination solution is not working in Exercism #201

malikvikram16 opened this issue Sep 24, 2022 · 2 comments
Assignees

Comments

@malikvikram16
Copy link

malikvikram16 commented Sep 24, 2022

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
@larshp
Copy link
Member

larshp commented Sep 24, 2022

thanks, yea, there are problems with AT, see #134

@larshp larshp mentioned this issue Sep 24, 2022
@larshp larshp changed the title ITAB combination solution is not working in Exercism AT: ITAB combination solution is not working in Exercism Sep 25, 2022
@larshp
Copy link
Member

larshp commented Mar 7, 2023

@malikvikram16 try again, AT should be fixed now

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

No branches or pull requests

3 participants