How do I get prime numbers 1-100 ?
Discussion posts and replies are publicly visible
I'd like to propose a very different, scalable, very Appian equivalent of prime number detection:
JS_primes
a!queryRecordType()
a!queryFilter(field: integer_int, operator:"<=", value: 100)
Sync Expression:Optimized isPrime calculation:
Since this exercise is usually brought up as a way to teach complexity of calculations / compute time vs tradeoffs of storage / memory: