Post History
Indicate whether a letter is an HTML element. Input A single lowercase letter. Output An indication of whether the input is a standard HTML element. This could be one of 2 distinct value...
#1: Initial revision
Single letter HTML
Indicate whether a letter is an HTML element. ## Input - A single lowercase letter. ## Output - An indication of whether the input is a standard HTML element. - This could be one of 2 distinct values to indicate true or false, or any truthy or falsy value if your programming language supports that. - You may choose whether truthy or falsy indicates an HTML element. ## Test cases Test cases are in the format `input : output`. These are correct at time of posting, and will remain the measure of validity for answers to this challenge even if the HTML specification changes in future. ```txt a : true b : true c : false d : false e : false f : false g : false h : false i : true j : false k : false l : false m : false n : false o : false p : true q : true r : false s : false t : false u : false v : false w : false x : false y : false z : false ``` ## Scoring This is a [code golf challenge]. Your score is the number of bytes in your code. > Explanations are optional, but I'm more likely to upvote answers that have one. [code golf challenge]: https://codegolf.codidact.com/categories/49/tags/4274 "The code-golf tag"
