Wolfram Language (Mathematica), (削除) 33 (削除ここまで) 26(削除) 26 (削除ここまで) 31 bytes
Fixed an error noted by Kelly Lowder in the comments.
x/.{}⋃Solve[#==0,x,Integers]&
Previous incorrect solutions:
I just noticed that for no integer solution, the output is undefined instead of empty list; that allows to remove a few bytes.
x/.Solve[#==0,x,Integers]&
Now if no integer solution exists, the function returns x.
Previously:
x/.Solve[#==0,x,Integers]/.x->{}&
Wolfram Language (Mathematica), (削除) 33 (削除ここまで) 26 bytes
I just noticed that for no integer solution, the output is undefined instead of empty list; that allows to remove a few bytes.
x/.Solve[#==0,x,Integers]&
Now if no integer solution exists, the function returns x.
Previously:
x/.Solve[#==0,x,Integers]/.x->{}&
Wolfram Language (Mathematica), (削除) 33 (削除ここまで) (削除) 26 (削除ここまで) 31 bytes
Fixed an error noted by Kelly Lowder in the comments.
x/.{}⋃Solve[#==0,x,Integers]&
Previous incorrect solutions:
I just noticed that for no integer solution, the output is undefined instead of empty list; that allows to remove a few bytes.
x/.Solve[#==0,x,Integers]&
Now if no integer solution exists, the function returns x.
Previously:
x/.Solve[#==0,x,Integers]/.x->{}&
Wolfram Language (Mathematica), 33(削除) 33 (削除ここまで) 26 bytes
I just noticed that for no integer solution, the output is undefined instead of empty list; that allows to remove a few bytes.
x/.Solve[#==0,x,Integers]&
Now if no integer solution exists, the function returns x.
Previously:
x/.Solve[#==0,x,Integers]/.x->{}&
Wolfram Language (Mathematica), (削除) 33 (削除ここまで) 26 bytes
I just noticed that for no integer solution, the output is undefined instead of empty list; that allows to remove a few bytes.
x/.Solve[#==0,x,Integers]&
Now if no integer solution exists, the function returns x.
Previously:
x/.Solve[#==0,x,Integers]/.x->{}&