2022/1/11
个人介绍+项目经历+重点介绍一个项目
coding题目:
求某个排列在所有全排列中的索引。(索引从1开始)
Given a certain permutation of n literals (e.g. BCDA is a permutation of literals ABCD). Find out its index of this permutation in the full permutation of these n literals when sorted in alphabetical order.
// Compiled with: g++ -Wall -std=c++14 -pthread #includeusing namespace std; #include #include unordered_map sortLetters(string target){ int sz = target.size(); unordered_map count; for(int i=0;i assist_map = sortLetters(target); for(int i =0;i 感觉没有发挥好,对于一些细节面试官提醒自己没反应过来,不过还是感谢给了机会尝试。



