A very useful method to randomly order the List:
import java.util.Collections;
List list = fetch();
Collections.shuffle(list);
return list.get(0);
I write about evolutionary anthropology, behavioral sciences, and related AI, particularly small, specialized Deep Neural Networks and LLMs.
No comments:
Post a Comment
Please be polite.