Pure Programmer
Blue Matrix


Cluster Map

Project: License Plate Generator

Assume that you work for the Department of Motor Vehicles. Write a program that generates all the possible license plate numbers and then prints the total number of plates at the very end.

Start with license plate numbers that are composed of three alphabetic (capital) letters, a dash then three digits. Don't allow 'I', 'O' and 'S' letters because they can be confused with digits. Modify the program to match the pattern that your state uses. See [[License Plate Designs]].

Output
$ swiftc LicensePlates1.swift -I . -L . -lUtils error: link command failed with exit code 1 (use -v to see invocation) ld: library not found for -lUtils clang: error: linker command failed with exit code 1 (use -v to see invocation)

Solution