I have this string array....
public static final String[][] cardNames = {
{"10","Blah"},
...
}
The data structure is the same for all records below that and all have a unique number value at the beginning (not related to their index). Id like to quickly find a record by that value without having to loop through the entire thing. Is that possible?
Map