From 09020bc9c2246e9b8102a0cb200f283641fdd30c Mon Sep 17 00:00:00 2001 From: orthographic-pedant Date: Wed, 30 Sep 2015 16:07:10 -0400 Subject: [PATCH] Fixed typographical error, changed accross to across in README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c0382ab..155dc1d 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ Collections 1. Find cartesian of lists. Link: https://github.com/techpanja/interviewproblems/blob/master/src/collections/cartesianproblem/CartesianOfLists.java -2. Find the common elements accross sorted sets/lists. +2. Find the common elements across sorted sets/lists. Link: https://github.com/techpanja/interviewproblems/blob/master/src/collections/commonelementsortedsets/FindCommonElementsInSortedSetsOrLists.java 3. Implement custom linked list.