Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner: solution in Creative category for All Upper I by --Serial_Sniper--
import assert from "assert";
function isAllUpper(text: string): boolean { return text == text.toUpperCase(); }
console.log('Example:');
console.log(isAllUpper('ALL UPPER'));
// These "asserts" are used for self-checking
assert.equal(isAllUpper('ALL UPPER'), true);
assert.equal(isAllUpper('all lower'), false);
assert.equal(isAllUpper('mixed UPPER and lower'), false);
assert.equal(isAllUpper(''), true);
console.log("Coding complete? Click 'Check' to earn cool rewards!");
June 5, 2020
Comments: