Vyxal, 43 bytes
Þė↑ṘÞė↑
And they said maximum by tail was useless! Now who's laughing! (me... It's me who's laughing)
Outputs [[x, y], item].
Explained
Þė↑ṘÞė↑
Þė # Multidimensional enumeration
↑ # Maximum by tail
Ṙ # Reverse the list to meet the output format requirements
💎
Created with the help of Luminespire.
Vyxal, 4 bytes
Þė↑Ṙ
And they said maximum by tail was useless! Now who's laughing! (me... It's me who's laughing)
Explained
Þė↑Ṙ
Þė # Multidimensional enumeration
↑ # Maximum by tail
Ṙ # Reverse the list to meet the output format requirements
💎
Created with the help of Luminespire.
Vyxal, 3 bytes
Þė↑
And they said maximum by tail was useless! Now who's laughing! (me... It's me who's laughing)
Outputs [[x, y], item].
Explained
Þė↑
Þė # Multidimensional enumeration
↑ # Maximum by tail
💎
Created with the help of Luminespire.
Vyxal, 42 bitsv2 , 5.254 bytes
fG~Þḟ"Þė↑Ṙ
Bitstring:And they said maximum by tail was useless! Now who's laughing! (me... It's me who's laughing)
011101101010110011101000111101110111010000
Explained
fG~Þḟ"Þė↑Ṙ
fGÞė # Multidimensional #enumeration
Find the↑ biggest item in# theMaximum flattenedby inputtail
~Þḟ Ṙ # Without popping, findReverse the multi-dimensionallist indexto ofmeet thatthe inoutput theformat inputrequirements
💎
Created with the help of Luminespire.
Vyxal, 42 bitsv2 , 5.25 bytes
fG~Þḟ"
Bitstring:
011101101010110011101000111101110111010000
Explained
fG~Þḟ"
fG # Find the biggest item in the flattened input
~Þḟ # Without popping, find the multi-dimensional index of that in the input
💎
Created with the help of Luminespire.
Vyxal, 4 bytes
Þė↑Ṙ
And they said maximum by tail was useless! Now who's laughing! (me... It's me who's laughing)
Explained
Þė↑Ṙ
Þė # Multidimensional enumeration
↑ # Maximum by tail
Ṙ # Reverse the list to meet the output format requirements
💎
Created with the help of Luminespire.
Vyxal, 42 bitsv2 , 5.25 bytes
fG~Þḟ"
Bitstring:
011101101010110011101000111101110111010000
Explained
fG~Þḟ"
fG # Find the biggest item in the flattened input
~Þḟ # Without popping, find the multi-dimensional index of that in the input
💎
Created with the help of Luminespire.