Sort stability: Difference between revisions

m
(Added Kotlin)
Line 1,033:
 
<lang rust>fn main() {
let country_city = vec![("UK", "London"),
("US", "New York"),
("US", "Birmingham"),
("UK", "Birmingham")];
 
let mut city_sorted = country_city.clone();