[Solved] How can i fix concatenate tuple (not “list”) to tuple

You forgot to call the conversion function for some parameter in your function. I tested and corrected your code, call it this way: is_verified = verified( convert(data[‘k_signer’]), data[‘d_pk’], convert(data[‘d_signer’]), data[‘sig’], convert(data[‘addr’]), convert(data[‘seed’]), convert(data[‘data’]) ) solved How can i fix concatenate tuple (not “list”) to tuple

[Solved] Combine elements of a list [closed]

Are you looking for this? var tupleList = new List<Tuple<string, string>>(); for (int i = 0; i < data.Count; i++) { for (int j = i + 1; j < data.Count; j++) { tupleList.Add(new Tuple<string, string>(data[i], data[j])); } } 1 solved Combine elements of a list [closed]

[Solved] I tried BUT for some reason my data sorting is not aligned with student names and i am getting wrong grades opposite to wrong names [closed]

The problem is that when you sort the GPAs, they’re no longer associated with the name ordering – you can simply skip doing so and the list indicies will stay correct or bring them into some collection (the instructions actually specify a tuple) # starting values scores_GPA = [3.85, 4.89, 2.89, 1.02, 3.8, 3.7, 2.9, … Read more