Question: need answer in java8 Write a function solution that, given an integer N, returns a string of length N containing as many different lower-case letters

 need answer in java8 Write a function solution that, given an

integer N, returns a string of length N containing as many different

need answer in java8

Write a function solution that, given an integer N, returns a string of length N containing as many different lower-case letters ('a'-'z') as possible, in which each letter occurs an equal number of times. Examples: 1. Given N=3, the function may return "fig", "pea", "nut", etc. Each of these strings contains three different letters with the same number of occurrences. 2. Given N=5, the function may return "mango", "grape", "melon", etc. 3. Given N=30, the function may return "aabbcc...oo" (each letter from 'a' to ' O ' occurs twice). The string contains 15 different letters. Write an efficient algorithm for the following assumptions: - N is an integer within the range [1..200,000]. // you can also use imports, for example: // import java.util.*; // you can write to stdout for debugging purposes, e. // system. out.println("this is a debug message"); class solution \{ public string solution(int N) \{ // Implement your solution here \}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!