YOUR LOCAL DIGITAL MARKETING AGENCY

Days
Hours
Minutes
Seconds

DIGITAL MARKETING STRATEGY

We bring you new customers

We build effective strategies to help you reach customers and prospects across the entire web.

BANK IFSC CODE BRANCH CITY STATE STD CODE PHONE
Axis Bank UTI001 Branch 1 Bhubaneswar Odisha 0674 7894869220
Axis Bank UTI002 Branch 2 Cuttack Odisha 0674 9876543219
Axis Bank UTI003 Branch 3 Puri Odisha 0674 8249675401

 

 

image 2

ONLINE REPUTATION MANAGEMENT

Analyzing negative materials about your brand and addressing them with sentiment analysis and press release distribution.

image 3

CONVERSION RATE OPTIMIZATION

Turn your visitors into customers with our team of experts. We’ll analyze your website and create a conversion-rate strategy.

wp image 22

ONLINE REPUTATION MANAGEMENT

Analyzing negative materials about your brand and addressing them with sentiment analysis and press release distribution.

GROW TRAFFIC & INCREASE REVENUE

Appear On the Front Page of Google!

We offer professional SEO services that help websites increase their organic search score drastically in order to compete for the highest rankings — even when it comes to highly competitive keywords

SEARCH ENGINE & SOCIAL MEDIA OPTIMIZATION

Full Service Digital Marketing Agency

Social Media Marketing

Organic Long-Term SEO

Advanced Analytics

Social Media Marketing

Happy Customers

				
					/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */

void trimLeftTrailingSpaces(string &input) {
    input.erase(input.begin(), find_if(input.begin(), input.end(), [](int ch) {
        return !isspace(ch);
    }));
}

void trimRightTrailingSpaces(string &input) {
    input.erase(find_if(input.rbegin(), input.rend(), [](int ch) {
        return !isspace(ch);
    }).base(), input.end());
}

vector<int> stringToIntegerVector(string input) {
    vector<int> output;
    trimLeftTrailingSpaces(input);
    trimRightTrailingSpaces(input);
    input = input.substr(1, input.length() - 2);
    stringstream ss;
    ss.str(input);
    string item;
    char delim = ',';
    while (getline(ss, item, delim)) {
        output.push_back(stoi(item));
    }
    return output;
}

ListNode* stringToListNode(string input) {
    // Generate list from the input
    vector<int> list = stringToIntegerVector(input);

    // Now convert that list into linked list
    ListNode* dummyRoot = new ListNode(0);
    ListNode* ptr = dummyRoot;
    for(int item : list) {
        ptr->next = new ListNode(item);
        ptr = ptr->next;
    }
    ptr = dummyRoot->next;
    delete dummyRoot;
    return ptr;
}

void prettyPrintLinkedList(ListNode* node) {
  while (node && node->next) {
      cout << node->val << "->";
      node = node->next;
  }

  if (node) {
    cout << node->val << endl;
  } else {
    cout << "Empty LinkedList" << endl;
  }
}

int main() {
    string line;
    while (getline(cin, line)) {
        ListNode* head = stringToListNode(line);
        prettyPrintLinkedList(head);
    }
    return 0;
}
				
			

GROW TRAFFIC & INCREASE REVENUE

Appear On the Front Page of Google!

We offer professional SEO services that help websites increase their organic search score drastically in order to compete for the highest rankings — even when it comes to highly competitive keywords

LOCAL SEARCH STRATEGY

Maximize your presence on search engine results pages on a local scale.

PAID SEARCH ADVERTISING

Paid listings on Google AdWords can help you reach new customers.

MAP SEARCH OPTIMIZATION

Google Maps Optimization is an important part for your local marketing strategy

CUSTOM WEBSITE DESIGN

Our team specializes in affordable web design and e-commerce

LINK BUILDING & CONTENT

Link building is a tremendously important component of Search Engine Optimization.

EMAIL CAMPAIGN DESIGN

Custom email templates that speak to your customers and resonate with your brand.

Scroll to Top

Fill this form to get a free quote

× How can I help you?