Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #44.2K
~6K People Reached
Favorite Forums
1 Posted Topic
Hello. I am writing a program that uses a List<T> object to retain a list of int[] objects. [CODE=C#] private int[] numbers = new int[9]; private List<int[]> theList = new List<int[]>(); [/CODE] It's basicaly a backtracking algorithm that constructs the [I]numbers[/I] object, which contains a permutatio of the numbers 1..9, … |
The End.