Reverse an array without affecting special characters | GeeksforGeeks

Sdílet
Vložit
  • čas přidán 14. 01. 2017
  • Explanation for the article: www.geeksforgeeks.org/reverse-...
    This video is contributed by Harshit Jain.

Komentáře • 9

  • @venuboini8020
    @venuboini8020 Před 3 lety +1

    Can you provide solution in JAVASCRIPT programming

  • @govindtiwari2585
    @govindtiwari2585 Před 3 lety

    Sir could you please help with Coding to ignore special characters whlie printing the even and odd characters in a string

  • @I-PixALbI4-I
    @I-PixALbI4-I Před 4 lety +1

    I wrote the same on C# but my mentor told me solve the task with Stack )

  • @urmadhu6367
    @urmadhu6367 Před 3 lety +1

    Sry can't understand

  • @logenaldo
    @logenaldo Před 6 lety

    Can you provide solution in C programming

    • @shivamagarawal8236
      @shivamagarawal8236 Před 5 lety

      #include
      #include
      #include
      using namespace std;
      string printrev(string str){
      int l=0;
      int r= str.length()-1;
      while(l>str;
      cout

  • @prabinpanda2882
    @prabinpanda2882 Před 3 lety

    Solution is little wrong. Assume you have more than one special char together.
    Instead of if(!alpha....) It should be while(! Alpha).

  • @wecan2729
    @wecan2729 Před 3 lety

    class Solution
    {
    public:
    bool isAlphabet(char x)
    {
    return ( (x >= 'A' && x = 'a' && x