I have the following array
cities = [\"Kathmandu\", \"Pokhara\", \"\", \"Dharan\", \"Butwal\"]
I want to remove blank elements from the ar
1.9.3p194 :001 > ["", "A", "B", "C", ""].reject(&:empty?) => ["A", "B", "C"]