Convert the contents of each fields into a string.
Example with an input structure s with 2 fields :
s.age = '33' s.prenom ='aurélien'
The output will be the string of size 1*11 :
str =
33 aurélien
which is the same of typing str = ['33',10,'aurélien']
Additional test cases have been added.
340 Solvers
Sum all integers from 1 to 2^n
6323 Solvers
Project Euler: Problem 9, Pythagorean numbers
157 Solvers
Numbers with prime factors 2, 3 and 5.
113 Solvers
Multiples of a Number in a Given Range
140 Solvers