alexdevero / digitoo-fullstack-task

Repository for fullstack task for Digitoo.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scramblies challenge

Task 1

Complete the function isScramble(str1, str2) that returns true if a portion of str1 characters can be rearranged to match str2, otherwise returns false.

Notes

Only lower case letters will be used (a-z). No punctuation or digits will be included. Performance needs to be considered

Examples

isScramble('rekqodlw', 'world') // true
isScramble('cedewaraaossoqqyt', 'codewars') // true
isScramble('katas', 'steak') // false

Task 2

Create a web service that accepts two strings in a request and applies function isScramble from previous task to them.

Task 3

Create a UI with two inputs for strings and a scramble button. When the button is fired it should call the API from previous task and display a result.

Notes

Please pay attention to tests, code readability and error cases.

Preferred technologies

  • TypeScript
  • ReactJS
  • NodeJS
  • Nest.js
  • GraphQL
  • Apollo

About

Repository for fullstack task for Digitoo.


Languages

Language:TypeScript 45.8%Language:CSS 26.3%Language:JavaScript 18.8%Language:HTML 9.1%