Skip to main content
added 39 characters in body
Source Link
Giuseppe
  • 29.4k
  • 3
  • 33
  • 106

R, 57 55 5050 46 bytes

\(n)cbind(a<-1n:n+11+1,b<-n+3-a%x%!!a)[order(a^b)[n],]

Attempt This Online!Attempt This Online!

Returns the \$n^\text{th}\$ value.

-2 bytes thanks to pajonk, then -4 more bytes thanks to pajonk. -1 byte thanks to Dominic van Essen.

R, 57 55 50 bytes

\(n)cbind(a<-1:n+1,b<-n+3-a%x%!!a)[order(a^b)[n],]

Attempt This Online!

Returns the \$n^\text{th}\$ value.

-2 bytes thanks to pajonk, then -4 more bytes thanks to pajonk.

R, 57 55 50 46 bytes

\(n)cbind(a<-n:1+1,b<-a%x%!!a)[order(a^b)[n],]

Attempt This Online!

Returns the \$n^\text{th}\$ value.

-2 bytes thanks to pajonk, then -4 more bytes thanks to pajonk. -1 byte thanks to Dominic van Essen.

added 35 characters in body
Source Link
Giuseppe
  • 29.4k
  • 3
  • 33
  • 106

R, 57 5555 50 bytes

\(n)cbind(a<-1:n+1,b<-n+3-a%x%!!a)[order(a^b,rep(a,n))[n],]

Attempt This Online!Attempt This Online!

Returns the \$n^\text{th}\$ value.

-2 bytes thanks to pajonk, then -4 more bytes thanks to pajonk.

R, 57 55 bytes

\(n)cbind(a<-1:n+1,b<-a%x%!!a)[order(a^b,rep(a,n))[n],]

Attempt This Online!

Returns the \$n^\text{th}\$ value.

-2 bytes thanks to pajonk.

R, 57 55 50 bytes

\(n)cbind(a<-1:n+1,b<-n+3-a%x%!!a)[order(a^b)[n],]

Attempt This Online!

Returns the \$n^\text{th}\$ value.

-2 bytes thanks to pajonk, then -4 more bytes thanks to pajonk.

added 37 characters in body
Source Link
Giuseppe
  • 29.4k
  • 3
  • 33
  • 106

R, 5757 55 bytes

\(n)cbind(a<-1:n+1,b<-a%x%!!1:na)[order(a^b,rep(a,n))[n],]

Attempt This Online!Attempt This Online!

Returns the \$n^\text{th}\$ value.

-2 bytes thanks to pajonk.

R, 57 bytes

\(n)cbind(a<-1:n+1,b<-a%x%!!1:n)[order(a^b,rep(a,n))[n],]

Attempt This Online!

Returns the \$n^\text{th}\$ value.

R, 57 55 bytes

\(n)cbind(a<-1:n+1,b<-a%x%!!a)[order(a^b,rep(a,n))[n],]

Attempt This Online!

Returns the \$n^\text{th}\$ value.

-2 bytes thanks to pajonk.

Source Link
Giuseppe
  • 29.4k
  • 3
  • 33
  • 106
Loading