Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
20
Task/String-comparison/R/string-comparison-2.r
Normal file
20
Task/String-comparison/R/string-comparison-2.r
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
compare <- function(a, b)
|
||||
{
|
||||
cat(paste(a, "is of type", class(a), "and", b, "is of type", class(b), "\n"))
|
||||
|
||||
printer <- function(a, b, msg) cat(paste(a, msg, b, "\n"))
|
||||
|
||||
op <- c(`<`, `<=`, `>`, `>=`, `==`, `!=`)
|
||||
msgs <- c(
|
||||
"is strictly less than",
|
||||
"is less than or equal to",
|
||||
"is strictly greater than",
|
||||
"is greater than or equal to",
|
||||
"is equal to",
|
||||
"is not equal to"
|
||||
)
|
||||
|
||||
sapply(1:length(msgs), function(i) if(op[[i]](a, b)) printer(a, b, msgs[i]))
|
||||
|
||||
invisible()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue