+ 7
[challenge] removal of prime digits in given input?
a number is given as input like 123456789 the number which is output is to be 1469 i welcome all languages
7 Réponses
+ 11
JavaScript:
alert(prompt("").split("2").join("").split("3").join("").split("5").join("").split("7").join(""));
+ 10
yeah , i will try it in java
(tomorrow)
+ 5
https://code.sololearn.com/cK8EuJ037On5/?ref=app
+ 2
Should prime be less than 11? What if there is 11 in string?
+ 2
bhai coming