Election results in the London Borough of Sutton.
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- # Check whether a list of parties is in the parties table
-
- require_relative '../models'
-
- ARGF.each do |line|
- line.strip!
- print line
- if Party.find(line)
- puts " found"
- else
- puts " not found"
- end
- end
|