Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started