From 1a062eff1caec77aec11ba9ecf0b6c6d8267b715 Mon Sep 17 00:00:00 2001 From: aashish Date: Fri, 2 Oct 2020 01:57:21 +0530 Subject: [PATCH 1/2] added Olx interview question --- CompanyWise/Olx.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 CompanyWise/Olx.md diff --git a/CompanyWise/Olx.md b/CompanyWise/Olx.md new file mode 100644 index 0000000..82ae537 --- /dev/null +++ b/CompanyWise/Olx.md @@ -0,0 +1,7 @@ +# OLX + +## Find Excel column name from a given column number +MS Excel columns has a pattern like A, B, C, …, Z, AA, AB, AC, …., AZ, BA, BB, … ZZ, AAA, AAB ….. etc. In other words, column 1 is named as “A”, column 2 as “B”, column 27 as “AA”. +Given a column number, find its corresponding Excel column name. + +[https://www.geeksforgeeks.org/find-excel-column-name-given-number/](https://www.geeksforgeeks.org/find-excel-column-name-given-number/) From 7f1e9c5f8d86e1b38c2a3297548c9eea57f89ad9 Mon Sep 17 00:00:00 2001 From: aashish Date: Fri, 2 Oct 2020 10:23:48 +0530 Subject: [PATCH 2/2] updated olx.md --- CompanyWise/Olx.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CompanyWise/Olx.md b/CompanyWise/Olx.md index 82ae537..cd61f7e 100644 --- a/CompanyWise/Olx.md +++ b/CompanyWise/Olx.md @@ -1,7 +1,6 @@ # OLX -## Find Excel column name from a given column number +## [Find Excel column name from a given column number](https://www.geeksforgeeks.org/find-excel-column-name-given-number/) MS Excel columns has a pattern like A, B, C, …, Z, AA, AB, AC, …., AZ, BA, BB, … ZZ, AAA, AAB ….. etc. In other words, column 1 is named as “A”, column 2 as “B”, column 27 as “AA”. Given a column number, find its corresponding Excel column name. -[https://www.geeksforgeeks.org/find-excel-column-name-given-number/](https://www.geeksforgeeks.org/find-excel-column-name-given-number/)