Test if arguments of the function are all variables (workspace variables names). Return 1 if yes, 0 if no.

For example :

a=1;

b=2;

c=3;

  • are_variables(a,b) -> 1
  • are_variables(a,b,1) -> 0

Easy ?

Solution Stats

127 Solutions

23 Solvers

Last Solution submitted on Jan 13, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...