Question: I have to implement a RC4 algorithim in R programming, I am havng issues with the last line K[x]

I have to implement a RC4 algorithim in R programming, I am havng issues with the last line K[x] <- key4[(x %% numchar)]. I keep getting an error "Error in K[x] <- key4[(x%%7)] : replacement has length zero". Please help. The code I have so far is written below.

key3 <- ("puzzles")

numchar <- nchar(key3, type = "bytes")

S <- for(i in 1:256){ print(i) } K <- vector(mode = "integer", length = 256) for (x in 1:256){ S[x] <- x K[x] <- key4[(x %% numchar)] }

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!