Write a function that returns true if you can use the letters of the first string to create the second string. Letters are case sensitive.
canBuild("aPPleAL", "PAL") ➞ true
canBuild("aPPleAL", "apple") ➞ false
canBuild("a", "") ➞ true
canBuild("aa", "aaa") ➞ false
Letters in the first string can be used only once.