Question: In Base R Studio Write a function that will create this table of all possible words of given size. For example, given a a word

In Base R Studio Write a function that will create this table of all possible words of given size. For example, given a a word size 3 and query sequence (LRITSLRI): we will have LRI, RIT, ITS, TSL, SLR, LRI => Hence 5 distinct words are possible.

test_sequence = "LRITSLRI" test_sequence2 = "LRITSLRIK"

enumerate_words = function(query_seq, word_size = 3) {

}

enumerate_words (test_sequence) Expected Output [1] 5 enumerate_words (test_sequence2) Expected Output [1] 6

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!