[虚拟机]Usernames System 用户名系统
Posted liuliu5151
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[虚拟机]Usernames System 用户名系统相关的知识,希望对你有一定的参考价值。
In this challenge, you will create the username portion of a registration system. All usernames must be unique. If a new user requests a name that is already used, an integer should be added to the end of the username to make it unique.
As an example, if username requests were for [bob, alice, bob, alice, bob, alice], your system should assign username bob, alice, bob1, alice1, bob2, alice2
Given a list of username requests in the order given, process all requests and return an array of the username as assigned by your function.
Function Description
Complete the function usernamesSystem in the editor below.
The function must return an array of username in the order desired.
usernamesSystem has the following parameter(s):
an array of username strings in the order required
题意:
思路:
代码:
以上是关于[虚拟机]Usernames System 用户名系统的主要内容,如果未能解决你的问题,请参考以下文章
虚拟机Ubuntu16.04 The system is running in low-graphics mode解决方法!!