You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 12, 2023. It is now read-only.
This repo is full of code problems that I have received prior or during an interview. I'll present all my solutions here in JavaScript, but feel free to add your own solutions in another language and even optimise my solutions. If you have your own code problems you would like to contribute, I would love to see them as well.
3
+
This is my repo full of code problems that I have completed prior to or during an interview. I hope that all these problems (and solutions) are useful to practice against and review. Feel free to contribute any solutions and optimisations, given they are algorithmic optimisations. Please add your own problems that you find as well, as I would love to see them.
4
+
5
+
## Contributing
6
+
7
+
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.
8
+
9
+
Indentation should be set to two spaces. Please lint and test your code with any means available - currently only JavaScript has tests and linting via Mocha and JSHint.
10
+
11
+
## Testing
12
+
13
+
```sh
14
+
npm install # Installs `mocha` and any other dependencies needed to run
Copy file name to clipboardexpand all lines: anagram-detection/Readme.md
-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,6 @@
2
2
3
3
Write a function that accepts two parameters, a parent and a child string. Determine how many times the child string - or an anagram of the of the child string - appears in the parent string. There is a solution which can be done in near instant time.
0 commit comments