Polybius is struct having size, characters, and key
| 14 | |
| 15 | // Polybius is struct having size, characters, and key |
| 16 | type Polybius struct { |
| 17 | size int |
| 18 | characters string |
| 19 | key string |
| 20 | } |
| 21 | |
| 22 | // NewPolybius returns a pointer to object of Polybius. |
| 23 | // If the size of "chars" is longer than "size", |
nothing calls this directly
no outgoing calls
no test coverage detected