Skip to main content
2 of 10
added 441 characters in body
Shaggy
  • 45k
  • 4
  • 39
  • 95

#Japt, 15 14 bytes 1-indexed

õ@[XXÉ]¬nÃfj l 

Test it


##Explanation Implicit input of integer U.
420

õ 

Create an array of integers from 1 to U, inclusive.
[1,2,3,...,420]

@ Ã 

Pass each through a function, where X is the current element

[XXÉ] 

Create an array containing X and X-1.
[[1,0],[2,1],[3,2],...,[420,419]]

¬n 

Join (¬) to a string and convert to an integer.
[10,21,32,...,420419]

fj 

Filter (f) primes.
[43,109,2221,...,420419]

l 

Get the length of the resulting array and implicitly output the result.
51

Shaggy
  • 45k
  • 4
  • 39
  • 95