One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| ''' | |
| Challenge: Create an iterator for a list of lists with the following methods: | |
| boolean **hasNext**() | |
| return true if there is another element in the set | |
| int **next**() | |
| return the value of the next element in the array | |
| void **remove**() |
| #include <iostream> | |
| #include <memory> | |
| using namespace std; | |
| typedef unsigned char BYTE; | |
| int M = 0xA5; | |
| int A = 0xc9; | |
| int N = 256; | |
| int init = 0x55; |