max tag

4 questions


1 answers
315 views
0
Is there a code that reads the numeric image on the screen and switches to numeric characters?

My goal is to figure out the in-game damage formula, which requires me to look at and calculate a lot of damage. It's hard for me to do it myself, so I'm going to recognize the damage number (1930-182...

1 years ago

1 answers
357 views
0
Is there a code that reads the numeric image on the screen and switches to numeric characters?

My goal is to figure out the in-game damage formula, which requires me to look at and calculate a lot of damage. It's hard for me to do it myself, so I'm going to recognize the damage number (1930-182...

1 years ago

1 answers
55 views
0
Find max value in Python 2D list

list_1 = [(2, 0), (1, 1), (3, 2), (2, 3)]temp = list_1[0][0]if temp < max(list_1):I want to make sure that the values from the two-dimensional list are the highest values in this listSince it is a ...

1 years ago

2 answers
70 views
0
Delete Python List Max String

It's PythonA = Delete the maximum string from the list ['c', 'bad', 'base', 'oracle', 'pandom'] (delete all strings of the same length if any) (ex. oracle and random) I know the maximum string and I k...

1 years ago

© 2024 OneMinuteCode. All rights reserved.