Skip to content

Commit 75df038

Browse files
authored
Update README.md
1 parent 1e63a36 commit 75df038

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/>
2626

2727
Technical Chellenge
28-
Initially I used recursion and this was the biggest mistake since js doesn't support tail optimization. When the data becomes too big with many nested level of data. The browser actually will crash.
28+
Initially I used recursion and this was the biggest mistake since js doesnt support tail optimization. When the data becomes too big with many nested level of data. The browser actually will crash.
2929

3030
Solved by:
3131
-> Instead of using recursion, use iteration.
@@ -34,6 +34,3 @@ Solved by:
3434

3535
I know this is against data mutation best practice but for performance we must mutate all the way.
3636

37-
38-
39-

0 commit comments

Comments
 (0)