Skip to content

Commit 8d4570c

Browse files
authored
Update TipsAndTricks.md
1 parent b5c0368 commit 8d4570c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

TipsAndTricks.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ Store currently unsolved elements, later if there is a bigger number, withdraw t
1818
- how to guess an element from a set? [843](https://leetcode.com/problems/guess-the-word/discuss/160945/Python-O(n)-with-maximum-overlap-heuristic)
1919
- circular array. Avoid the circular point by working on 2 intervals `[0..n-1)` && `[1..n)` [213](), [1388]()
2020
- using XOR (identical = 0, different = 1) to check duplicated elements in array [136]()
21-
- A float number can be represented as a division of 2 integer number (using GCD to reduce to the simplest form) [149](https://leetcode.com/problems/max-points-on-a-line/discuss/566204/Java-Simple-Code-Math)
21+
- a float number can be represented as a division of 2 integer number (using GCD to reduce to the simplest form) [149](https://leetcode.com/problems/max-points-on-a-line/discuss/566204/Java-Simple-Code-Math)
22+
- how to find the meeting point in a cycle linkedlist? [#](https://www.geeksforgeeks.org/find-first-node-of-loop-in-a-linked-list/?ref=rp)

0 commit comments

Comments
 (0)