内容简介:给定一个单词数组和一个字符串,判断给定的数组是否满足给定字符串的顺序。按给定字符串,替换成正常顺序的单词。
D61 953. Verifying an Alien Dictionary
题目链接
953. Verifying an Alien Dictionary
题目分析
给定一个单词数组和一个字符串,判断给定的数组是否满足给定字符串的顺序。
思路
按给定字符串,替换成正常顺序的单词。
再判断sort之前和之后的数组是否相同。
最终代码
<?php class Solution { /** * @param String[] $words * @param String $order * @return Boolean */ function isAlienSorted($words, $order) { $order = array_flip(str_split($order)); $alphas = str_split('abcdefghijklmnopqrstuvwxyz'); $words = array_map(function($val) use ($order, $alphas){ $chars = str_split($val); $word = []; foreach($chars as $char){ $word[] = $alphas[$order[$char]]; } return implode('', $word); }, $words); $originalWords = $words; sort($words); return $words == $originalWords; } }
若觉得本文章对你有用,欢迎用 爱发电 资助。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Operating Systems
Remzi Arpaci-Dusseau、Andrea Arpaci-Dusseau / Arpaci-Dusseau Books / 2012-8-19 / USD 21.00
A book about modern operating systems. Topics are broken down into three major conceptual pieces: Virtualization, Concurrency, and Persistence. Includes all major components of modern systems includin......一起来看看 《Operating Systems》 这本书的介绍吧!