Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For each of the following, create a static method with the appropriate inputs and outputs. Call each of them in the main method. 2.1


imageimageimage

For each of the following, create a static method with the appropriate inputs and outputs. Call each of them in the main method. 2.1 Uniqueness Write a method called unique () which takes in a List and returns true if all the items in the List are unique. All the items are unique if none of them are the same. Return false otherwise. 2.2 All Multiples Write a method named allMultiples() which takes in a List of integers and an int. The method returns a new List of integers which contains all of the numbers from the input list which are multiples of the given int. For example, if the List is [1, 25, 2, 5, 30, 19, 57, 2, 25] and 5 was provided, the new list should contain [25, 5, 30, 25]. 2.3 All Strings of Size Write a method named allStrings Of Size() which takes in a List and an int length. The method returns a new List which con- tains all the Strings from the original list that are length characters long. For example, if the inputs are ["I", "like", "to", "eat", "eat", " 'eat" "apples", "and", "bananas"] and 3, the new list is ["eat", "eat", "eat" "and"]. 2.4 String To List of Words Write a method called stringToListOfWords() which takes in a String con- verts it into a list of words. We assumes that each word in the input string is separated by whitespace. If our input String is "Hello, world!", then the output should be ["Hello,", "world!"]. For extra credit, sanitize the String, cleaning it up so that we re- move the punctuation and other extraneous characters such that the output in the above example would become ["Hello", "world"] This method returns List . 2.5 Remove All Instances Write a method called removeAllInstances() which takes in a List and item4. The method then proceeds to remove each item in the list that matches the given item. For example, if the method is passed the List [1, 4, 5, 6, 5, 5, 2] and the Integer 5, the method removes all 5's from the List. The List then becomes [1, 4, 6, 2]. It should return nothing, since the changes the List it was provided. 5 You must test this on a input like the one I gave above, where some of the items to be removed are in successive indices.. Otherwise you will believe you have solved it, when in fact you haven't hit the brick wall for this problem yet.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

Algorithm of the code Main Method 1 Testing unique Method Create two lists list1 and list2 with different sets of integers Call the unique method with ... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Entrepreneurship

Authors: Andrew Zacharakis, William D Bygrave

5th Edition

1119563097, 9781119563099

More Books

Students also viewed these Programming questions

Question

Be prepared to discuss your career plans.

Answered: 1 week ago

Question

What is service marketing? internal marketing? AppendixLO1

Answered: 1 week ago

Question

What is a situation analysis? AppendixLO1

Answered: 1 week ago