Skip to content

Latest commit

 

History

History

typescript_problem_01_is_string_a_permutation

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

typescript_problem_is_string_a_permutation

requirements

  • Node 18+

Project setup

npm install

Problem

Determine if a string is a permutation of another string.

Constraints

Question Answer
Can we assume the string is ASCII? Yes
Is whitespace important? Yes
Is it case-sensitive? Yes - 'Nib', 'bin' is not a match!
Can I add additional npm packages? Yes