← 返回 coinbase 的题目列表Generate Random NFT
类型:online_judge
Generate Random NFT
You need to generate a random NFT dataset. Each NFT is uniquely identified by a string and there are no duplicates. Given an integer n, return a list of n unique NFTs.
Input:
An integer n, representing the number of unique NFTs that need to be generated.
Output:
A list of n unique NFTs.
Example:
Input: 5
Output: ['NFT1', 'NFT2', 'NFT3', 'NFT4', 'NFT5']
Constraints:
1 <= n <= 1,000,000
Example
Input
5