Posts by Rafinha • 11 points
3 posts
-
-4
votes4
answers6021
viewsQ: How to create a function to find the highest value in a list?
I’m not getting this algorithm into a function max_trip = 0 for val in trip_duration_list: if int(val) > max_trip: max_trip = int(val)
-
0
votes0
answers167
viewsQ: How to implement a queue TAD with complex objects?
I need to implement a data structure queue, with objects, being RA and student name but I’m not able to evolve, a queue with only integers I get good, already this will not even. I think I’m getting…
-
1
votes1
answer227
viewsQ: How to implement Abstract Data Type?
Good evening, I need to do a point TAD implementation, I’m managing to do in Python, but the problem is that it should be implemented in Java and I have no idea how to start. import math class…