Scope (17)
Say Hello World:
$Username"Peter"$Username Join a string with its reversal:
Join a hello string with its reversal:
SayHello["world"]"Hello world!"SayHello["world"] Find the maximum length of any roman numeral up to 3000:
Stack successively longer lists of integers on top of each other:
Replace multiples of 3 with fizz and multiples of 5 with buzz and multiples of 3 and 5 with fizz-buzz:
Find the number of multiples of 3 and 5 up to ⌈ⅇ12⌉:
Ceiling[ⅇ12]162755Ceiling[ⅇ12] Find all words that begin and end with a given letter in WordList:
WordListLookup is to DictionaryLookup as WordList[] is to DictionaryLookup[]:
Test if an integer is a palindrome:
Test if 2015 is a palindrome in base 2, binary:
Write the first sentence of the Genesis KJV in Morse code:
Iteratively sum and square all integers from 1 to 10:
Test if input is a positive integer:
Find all ways to score 21 points with two pointers and three pointers in basketball:
Rearrange a list of integers so all odd integers appear before all even integers, without changing the order otherwise:
Array[Fibonacci,20]{1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584,4181,6765}Array[Fibonacci,20] Find all distinct pairs that sum to 100 in a list of integers: