Skip to content

Instantly share code, notes, and snippets.

@layerssss
Last active August 29, 2015 14:21
Show Gist options
  • Save layerssss/e8df69eff8b4869759f8 to your computer and use it in GitHub Desktop.
Save layerssss/e8df69eff8b4869759f8 to your computer and use it in GitHub Desktop.
珠海车牌自选号
aa = [
'CRC',
'CDN',
'CSS',
'CPP',
'CPU',
'CRT',
'CDR',
'CES',
'CFG',
'CLR',
]
bb = [
'128',
'256',
'512',
'404',
'403',
'302',
'200',
'500',
'206',
'386',
'486',
'586',
'686',
]
cc = []
aa.each do |a|
bb.each do |b|
cc << "粤#{a}#{b}"
end
end
puts cc.join("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment